From: Dana Jansens Date: Tue, 22 May 2007 23:44:33 +0000 (+0000) Subject: dont compress motion events. it breaks things, moveresize is missing events X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=e043faec9e073c8f5599a72b4f8b87160a3fbaa0;p=chaz%2Fopenbox dont compress motion events. it breaks things, moveresize is missing events --- 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; } }