Disable mouse motion event compression
We cannot inspect the event loop - this needs proper porting.
This commit is contained in:
parent
94e4a31370
commit
b96d16e63d
1 changed files with 2 additions and 1 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Reference in a new issue