From: Dana Jansens Date: Sat, 26 Jan 2008 18:36:20 +0000 (-0500) Subject: when ignoring enter events, only ignore up to the current serial (NextRequest()-1... X-Git-Tag: release-3.4.6^2~23 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=8af80aa8dd47090bc418c6cf7e1c3894621566b7;p=dana%2Fopenbox.git when ignoring enter events, only ignore up to the current serial (NextRequest()-1). Don't ignore enters that come after this with the next serial. --- diff --git a/openbox/event.c b/openbox/event.c index 7d24640c..535e9f14 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -1952,7 +1952,13 @@ static void event_ignore_enter_range(gulong start, gulong end) void event_end_ignore_all_enters(gulong start) { - event_ignore_enter_range(start, NextRequest(ob_display)); + /* Use (NextRequest-1) so that we ignore up to the current serial only. + Inside event_ignore_enter_range, we increment the serial by one, but if + we ignore that serial too, then any enter events generated by mouse + movement will be ignored until we create some further network traffic. + Instead ignore up to NextRequest-1, then when we increment the serial, + we will be *past* the range of ignored serials */ + event_ignore_enter_range(start, NextRequest(ob_display)-1); } static gboolean is_enter_focus_event_ignored(XEvent *e)