X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Ffocus.c;h=93058d555fe7bcf0f4b73eaa510522e86ffffb19;hb=47d63718c664f2ef58f5dfde42ebfc5cc57e123c;hp=87f589f2d055cc24eeb2dc400662e24e20beb7c5;hpb=16fcb1213d4ccfccd4e4a8ad5e8b0c826dc5c16e;p=chaz%2Fopenbox diff --git a/openbox/focus.c b/openbox/focus.c index 87f589f2..93058d55 100644 --- a/openbox/focus.c +++ b/openbox/focus.c @@ -105,7 +105,7 @@ static ObClient* focus_fallback_target(gboolean allow_refocus, ob_debug_type(OB_DEBUG_FOCUS, "trying pointer stuff\n"); if (allow_pointer && config_focus_follow) if ((c = client_under_pointer()) && - (allow_refocus || c != old) && + (allow_refocus || client_focus_target(c) != old) && (client_normal(c) && client_focus(c))) { @@ -125,7 +125,7 @@ static ObClient* focus_fallback_target(gboolean allow_refocus, */ if (c->desktop == screen_desktop && client_normal(c) && - (allow_refocus || c != old) && + (allow_refocus || client_focus_target(c) != old) && client_focus(c)) { ob_debug_type(OB_DEBUG_FOCUS, "found in focus order\n"); @@ -144,7 +144,7 @@ static ObClient* focus_fallback_target(gboolean allow_refocus, backup fallback though) */ if (c->type == OB_CLIENT_TYPE_DESKTOP && - (allow_refocus || c != old) && + (allow_refocus || client_focus_target(c) != old) && client_focus(c)) { ob_debug_type(OB_DEBUG_FOCUS, "found a desktop window\n"); @@ -190,8 +190,7 @@ void focus_nothing() actions should not rely on being able to move focus during an interactive grab. */ - if (keyboard_interactively_grabbed()) - keyboard_interactive_cancel(); + event_cancel_all_key_grabs(); /* when nothing will be focused, send focus to the backup target */ XSetInputFocus(ob_display, screen_support_win, RevertToPointerRoot,