winex11: Include raw motion events in the QS_MOUSEMOVE event filter.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2015-12-02 15:31:34 +09:00
parent 413c6f60cf
commit 197f708be4
1 changed files with 3 additions and 0 deletions

View File

@ -240,6 +240,9 @@ static Bool filter_event( Display *display, XEvent *event, char *arg )
case ButtonPress:
case ButtonRelease:
return (mask & QS_MOUSEBUTTON) != 0;
#ifdef GenericEvent
case GenericEvent:
#endif
case MotionNotify:
case EnterNotify:
case LeaveNotify: