From b96d16e63d3668694189b86cdcc82c26963fd0c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Wed, 31 Jul 2013 14:05:52 +0200 Subject: [PATCH] Disable mouse motion event compression We cannot inspect the event loop - this needs proper porting. --- events.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/events.cpp b/events.cpp index 8abf14259b..4665fbacb1 100644 --- a/events.cpp +++ b/events.cpp @@ -1337,7 +1337,8 @@ bool Client::motionNotifyEvent(xcb_window_t w, int state, int x, int y, int x_ro x = this->x(); // translate from grab window to local coords y = this->y(); } - if (!waitingMotionEvent()) { +#warning Mouse event compression is lost + if (/*!waitingMotionEvent()*/true) { QRect oldGeo = geometry(); handleMoveResize(x, y, x_root, y_root); if (!isFullScreen() && isMove() && oldGeo != geometry()) {