Commit 197f708b authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 413c6f60
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment