diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-22 23:44:33 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-22 23:44:33 +0000 |
| commit | e043faec9e073c8f5599a72b4f8b87160a3fbaa0 (patch) | |
| tree | 0b4d8439344040c2c38fab04c0eaf8a8521e1917 | |
| parent | 206ad12bda6688bdd210f75b53b4989038f4e875 (diff) | |
dont compress motion events. it breaks things, moveresize is missing events
| -rw-r--r-- | openbox/event.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/openbox/event.c b/openbox/event.c index d7c723d1..af239d23 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -265,15 +265,6 @@ static void event_hack_mods(XEvent *e) break; case MotionNotify: e->xmotion.state = modkeys_only_modifier_masks(e->xmotion.state); - /* compress events */ - { - XEvent ce; - while (XCheckTypedWindowEvent(ob_display, e->xmotion.window, - e->type, &ce)) { - e->xmotion.x_root = ce.xmotion.x_root; - e->xmotion.y_root = ce.xmotion.y_root; - } - } break; } } |
