allow alt-tab etc to move focus to skip_taskbar windows when they are iconic
authorDana Jansens <danakj@orodu.net>
Fri, 8 Jan 2010 19:34:22 +0000 (14:34 -0500)
committerDana Jansens <danakj@orodu.net>
Fri, 8 Jan 2010 19:34:22 +0000 (14:34 -0500)
openbox/focus.c

index a75c170..7312974 100644 (file)
@@ -328,9 +328,10 @@ gboolean focus_valid_target(ObClient *ft,
 
     /* it's not set to skip the taskbar (but this only applies to normal typed
        windows, and is overridden if the window is modal or if the user asked
-       for this window to be focused) */
+       for this window to be focused, or if the window is iconified) */
     ok = ok && (ft->type != OB_CLIENT_TYPE_NORMAL ||
                 ft->modal ||
+                ft->iconic ||
                 user_request ||
                 !ft->skip_taskbar);