projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c53055
)
ignore !normal crossing events
author
Dana Jansens
<danakj@orodu.net>
Wed, 19 Mar 2003 08:19:27 +0000
(08:19 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Wed, 19 Mar 2003 08:19:27 +0000
(08:19 +0000)
openbox/event.c
patch
|
blob
|
history
diff --git
a/openbox/event.c
b/openbox/event.c
index 43142e3a47ffefe81a0341d437c9a8d972b6e4d7..b4bfd9baf73039b2f4e0bc0498d193acdd28d076 100644
(file)
--- a/
openbox/event.c
+++ b/
openbox/event.c
@@
-248,6
+248,10
@@
void event_process(XEvent *e)
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;
}