all repos — openbox @ 4732930eec3b68b18ba0df32903a0251719b943f

openbox fork - make it a bit more like ryudo

ignore !normal crossing events
Dana Jansens danakj@orodu.net
commit

4732930eec3b68b18ba0df32903a0251719b943f

parent

5c53055ee7e7efc4bc5fae2a7ba6206fa61eac5b

1 files changed, 4 insertions(+), 0 deletions(-)

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

@@ -248,6 +248,10 @@ break;

case EnterNotify: case LeaveNotify: event_lasttime = e->xcrossing.time; + /* XXX this caused problems before... but i don't remember why. hah. + so back it is. if problems arise again, then try filtering on the + detail instead of the mode. */ + if (e->xcrossing.mode != NotifyNormal) return; break; }