winex11drv: Don't ignore mouse move events even when position did not change.

This commit is contained in:
Vitaliy Margolen 2007-09-06 09:01:27 -06:00 committed by Alexandre Julliard
parent 78da158ef8
commit 6444f574c7

View file

@ -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)