Disable mouse motion event compression

We cannot inspect the event loop - this needs proper porting.
This commit is contained in:
Martin Gräßlin 2013-07-31 14:05:52 +02:00
parent 94e4a31370
commit b96d16e63d

View file

@ -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 x = this->x(); // translate from grab window to local coords
y = this->y(); y = this->y();
} }
if (!waitingMotionEvent()) { #warning Mouse event compression is lost
if (/*!waitingMotionEvent()*/true) {
QRect oldGeo = geometry(); QRect oldGeo = geometry();
handleMoveResize(x, y, x_root, y_root); handleMoveResize(x, y, x_root, y_root);
if (!isFullScreen() && isMove() && oldGeo != geometry()) { if (!isFullScreen() && isMove() && oldGeo != geometry()) {