all repos — openbox @ 1b75005e0d86ef8f4a80ad4f1ecda1d7c2c55048

openbox fork - make it a bit more like ryudo

count the EnterNotify events and tell openbox to ignore them when ungrabbing the pointer
Dana Jansens danakj@orodu.net
commit

1b75005e0d86ef8f4a80ad4f1ecda1d7c2c55048

parent

a260db31a99ad35a5bf347facab2cdd61e3b7558

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

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

@@ -78,8 +78,38 @@ ob_cursor(cur), event_lasttime) == Success;

else ret = TRUE; } else if (pgrabs > 0) { - if (--pgrabs == 0) + if (--pgrabs == 0) { XUngrabPointer(ob_display, event_lasttime); + + /* ignore all enter events caused by ungrabbing the pointer */ + { + GSList *saved = NULL, *it; + XEvent *e; + guint n = 0; + + XSync(ob_display, FALSE); + + /* count the events */ + while (TRUE) { + e = g_new(XEvent, 1); + if (XCheckTypedEvent(ob_display, EnterNotify, e)) { + saved = g_slist_append(saved, e); + ++n; + } else { + g_free(e); + break; + } + } + /* put the events back */ + for (it = saved; it; it = g_slist_next(it)) { + XPutBackEvent(ob_display, it->data); + g_free(it->data); + } + g_slist_free(saved); + /* ignore the events */ + event_ignore_enter_focus(n); + } + } ret = TRUE; } return ret;