summaryrefslogtreecommitdiff
path: root/openbox/focus.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-25 15:41:14 +0000
committerDana Jansens <danakj@orodu.net>2007-05-25 15:41:14 +0000
commitad8e8d4988b515ff690564588983eeedf3f238f4 (patch)
tree55da02d07770845f4afe3c84eb9dece3d0951371 /openbox/focus.c
parentcca8a9030154a13c05d63ab700bc94c578707891 (diff)
less negatives means less confusing.. but yeah. get rid of omnipresent check in focus_fallback
Diffstat (limited to 'openbox/focus.c')
-rw-r--r--openbox/focus.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/openbox/focus.c b/openbox/focus.c
index 0f9f2f1b..fad53e92 100644
--- a/openbox/focus.c
+++ b/openbox/focus.c
@@ -110,17 +110,6 @@ static ObClient* focus_fallback_target(gboolean allow_refocus, ObClient *old)
return c;
}
- ob_debug_type(OB_DEBUG_FOCUS, "trying omnipresentness\n");
- if (allow_refocus && old &&
- old->desktop == DESKTOP_ALL &&
- client_normal(old) &&
- client_focus(old))
- {
- ob_debug_type(OB_DEBUG_FOCUS, "found in omnipresentness\n");
- return old;
- }
-
-
ob_debug_type(OB_DEBUG_FOCUS, "trying the focus order\n");
for (it = focus_order; it; it = g_list_next(it)) {
c = it->data;