all repos — openbox @ 450c21d0cac6c95b44fb1f85ad74a9896dabd687

openbox fork - make it a bit more like ryudo

ignore virtual crossing events..
Dana Jansens danakj@orodu.net
commit

450c21d0cac6c95b44fb1f85ad74a9896dabd687

parent

8d3829d160a470d76952949c87f81727fb8b45ae

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

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

@@ -304,8 +304,10 @@ case EnterNotify:

case LeaveNotify: /* NotifyUngrab occurs when a mouse button is released and the event is caused, like when lowering a window */ + /* NotifyVirtual occurs when ungrabbing the pointer */ if (e->xcrossing.mode == NotifyGrab || - e->xcrossing.detail == NotifyInferior) + e->xcrossing.detail == NotifyInferior || + e->xcrossing.detail == NotifyVirtual) return TRUE; break; }