all repos — openbox @ 8af80aa8dd47090bc418c6cf7e1c3894621566b7

openbox fork - make it a bit more like ryudo

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.
Dana Jansens danakj@orodu.net
commit

8af80aa8dd47090bc418c6cf7e1c3894621566b7

parent

4307366b713aaf1a5787dbb3244a5717db1330e8

1 files changed, 7 insertions(+), 1 deletions(-)

jump to
M openbox/event.copenbox/event.c

@@ -1952,7 +1952,13 @@ }

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)