]> Dogcows Code - chaz/openbox/commitdiff
that was dumb, it was metacity's fault
authorDana Jansens <danakj@orodu.net>
Thu, 17 Apr 2003 01:25:29 +0000 (01:25 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 17 Apr 2003 01:25:29 +0000 (01:25 +0000)
openbox/focus.c

index 04ef7cd4b37ca63665c77d8d856e88346d1ca567..e5d3942f165260a7a6372823b973dca13cd0002a 100644 (file)
@@ -161,9 +161,7 @@ void focus_fallback(FallbackType type)
 
     for (it = focus_order[screen_desktop]; it != NULL; it = it->next)
         if (type != Fallback_Unfocusing || it->data != old)
-            if (client_normal(it->data) &&
-                ((Client*)it->data)->frame->visible &&
-                client_focus(it->data))
+            if (client_normal(it->data) && client_focus(it->data))
                 return;
 
     /* nothing to focus */
@@ -209,7 +207,7 @@ Client *focus_cycle(gboolean forward, gboolean linear, gboolean done,
         }
         ft = client_focus_target(it->data);
         if (ft == it->data && focus_client != ft && client_normal(ft) &&
-            ft->frame->visible && client_focus(ft)) {
+            client_focus(ft)) {
             noreorder++; /* avoid reordering the focus_order */
             return ft;
         }
This page took 0.024345 seconds and 4 git commands to generate.