]> Dogcows Code - chaz/openbox/blobdiff - openbox/focus.c
don't skip windows that are skip_taskbar unless they are normal typed.. i.e. if a...
[chaz/openbox] / openbox / focus.c
index df02cb7630bf7c9bff8dbc38f385437ba7f4db37..a4eb2cfa32a76b000c16d6f7d2160519382ed49a 100644 (file)
@@ -337,13 +337,9 @@ gboolean focus_valid_target(ObClient *ft,
                   that can be focused instead */
                !focus_target_has_siblings(ft, iconic_windows, all_desktops))));
 
-    /* it's not set to skip the taskbar (unless it is a type that would be
-       expected to set this hint, or modal) */
-    ok = ok && ((ft->type == OB_CLIENT_TYPE_DOCK ||
-                 ft->type == OB_CLIENT_TYPE_DESKTOP ||
-                 ft->type == OB_CLIENT_TYPE_TOOLBAR ||
-                 ft->type == OB_CLIENT_TYPE_MENU ||
-                 ft->type == OB_CLIENT_TYPE_UTILITY) ||
+    /* it's not set to skip the taskbar (but this only applies to normal typed
+       windows, and is overridden if the window is modal) */
+    ok = ok && (ft->type != OB_CLIENT_TYPE_NORMAL ||
                 ft->modal ||
                 !ft->skip_taskbar);
 
This page took 0.028624 seconds and 4 git commands to generate.