allow cycling to iconic windows
authorDana Jansens <danakj@orodu.net>
Wed, 4 Jun 2003 19:30:35 +0000 (19:30 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 4 Jun 2003 19:30:35 +0000 (19:30 +0000)
openbox/focus.c

index 761d4f4..141fc47 100644 (file)
@@ -322,8 +322,13 @@ Client *focus_cycle(gboolean forward, gboolean linear, gboolean done,
         }
         /*ft = client_focus_target(it->data);*/
         ft = it->data;
+        /* we don't use client_can_focus here, because that doesn't let you
+           focus an iconic window, but we want to be able to, so we just check
+           if the focus flags on the window allow it, and its on the current
+           desktop */
         if (ft->transients == NULL && client_normal(ft) &&
-            client_can_focus(ft)) {
+            ((ft->can_focus || ft->focus_notify) &&
+             (ft->desktop == screen_desktop || ft->desktop == DESKTOP_ALL))) {
             if (ft != focus_cycle_target) { /* prevents flicker */
                 if (focus_cycle_target)
                     frame_adjust_focus(focus_cycle_target->frame, FALSE);