winex11drv: Don't ignore mouse move events even when position did not change.
This commit is contained in:
parent
78da158ef8
commit
6444f574c7
|
@ -283,9 +283,6 @@ void X11DRV_send_mouse_input( HWND hwnd, DWORD flags, DWORD x, DWORD y,
|
|||
{
|
||||
pt.x = x;
|
||||
pt.y = y;
|
||||
wine_tsx11_lock();
|
||||
if (cursor_pos.x == x && cursor_pos.y == y) flags &= ~MOUSEEVENTF_MOVE;
|
||||
wine_tsx11_unlock();
|
||||
}
|
||||
}
|
||||
else if (flags & MOUSEEVENTF_MOVE)
|
||||
|
|
Loading…
Reference in New Issue