X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fevent.c;h=c63f6fea7bf3728924a43c5ad5f49fcb61510d1d;hb=a79e51c64fdfa1ffd303a5a96c6ae9e393b1353a;hp=97b0da84e69309ebe1ca2921a4888e844760b755;hpb=1e5d8ce0a84424bb0ec97b027f48c975c9578de1;p=chaz%2Fopenbox diff --git a/openbox/event.c b/openbox/event.c index 97b0da84..c63f6fea 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -499,7 +499,7 @@ static void event_process(const XEvent *ec, gpointer data) focus_left_screen = FALSE; - focus_fallback(FALSE, FALSE); + focus_fallback(FALSE, config_focus_under_mouse, TRUE); /* We don't get a FocusOut for this case, because it's just moving from our Inferior up to us. This happens when iconifying a @@ -551,7 +551,7 @@ static void event_process(const XEvent *ec, gpointer data) */ if (!focus_left_screen) - focus_fallback(FALSE, FALSE); + focus_fallback(FALSE, config_focus_under_mouse, TRUE); } } else if (!client) @@ -607,7 +607,7 @@ static void event_process(const XEvent *ec, gpointer data) ob_debug_type(OB_DEBUG_FOCUS, "Focus went to an unmanaged window 0x%x !\n", ce.xfocus.window); - focus_fallback(TRUE, FALSE); + focus_fallback(TRUE, config_focus_under_mouse, TRUE); } } @@ -1875,11 +1875,9 @@ void event_end_ignore_all_enters(gulong start) r->start = start; r->end = LastKnownRequestProcessed(ob_display); ignore_serials = g_slist_prepend(ignore_serials, r); - ob_debug("ignoring serials %u-%u\n", r->start, r->end); /* increment the serial so we don't ignore events we weren't meant to */ XSync(ob_display, FALSE); - ob_debug("now last serial %u\n", LastKnownRequestProcessed(ob_display)); } static gboolean is_enter_focus_event_ignored(XEvent *e) @@ -1891,14 +1889,11 @@ static gboolean is_enter_focus_event_ignored(XEvent *e) e->xcrossing.mode == NotifyUngrab || e->xcrossing.detail == NotifyInferior)); - ob_debug("checking serial %u\n", e->xany.serial); for (it = ignore_serials; it; it = next) { ObSerialRange *r = it->data; next = g_slist_next(it); - /* XXX wraparound... */ - ob_debug(" ignore range %u-%u\n", r->start, r->end); if ((glong)(e->xany.serial - r->end) > 0) { /* past the end */ ignore_serials = g_slist_delete_link(ignore_serials, it);