summaryrefslogtreecommitdiff
path: root/openbox/focus.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-03 20:57:40 +0000
committerDana Jansens <danakj@orodu.net>2007-05-03 20:57:40 +0000
commit5784f11132cb2ee64af23695867aca9f4ebe0b9b (patch)
treef93bd596e60848e55c31075ef2c04551c6174cb0 /openbox/focus.c
parente0e1d4ba7e150b215b55029ddbff3c824b94caf7 (diff)
add the notion of "application windows" meaning normal or dialog type windows.
let you alt-tab to non-application windows when they dont have an application window in their group
Diffstat (limited to 'openbox/focus.c')
-rw-r--r--openbox/focus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/focus.c b/openbox/focus.c
index 8fcb13f9..b1e31236 100644
--- a/openbox/focus.c
+++ b/openbox/focus.c
@@ -475,7 +475,7 @@ static gboolean valid_focus_target(ObClient *ft, gboolean dock_windows)
else
ok = (ft->type == OB_CLIENT_TYPE_NORMAL ||
ft->type == OB_CLIENT_TYPE_DIALOG ||
- (!client_has_group_siblings(ft) &&
+ (!client_has_application_group_siblings(ft) &&
(ft->type == OB_CLIENT_TYPE_TOOLBAR ||
ft->type == OB_CLIENT_TYPE_MENU ||
ft->type == OB_CLIENT_TYPE_UTILITY)));