winex11: Include raw motion events in the QS_MOUSEMOVE event filter.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
413c6f60cf
commit
197f708be4
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue