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