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

Alexandre Julliard julliard at wine.codeweavers.com
Wed Dec 2 10:21:18 CST 2015


Module: wine
Branch: master
Commit: 197f708be448719bf5938d1ff282811439e7c224
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=197f708be448719bf5938d1ff282811439e7c224

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Dec  2 15:31:34 2015 +0900

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

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/winex11.drv/event.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dlls/winex11.drv/event.c b/dlls/winex11.drv/event.c
index ee30259..51ef24b 100644
--- a/dlls/winex11.drv/event.c
+++ b/dlls/winex11.drv/event.c
@@ -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:




More information about the wine-cvs mailing list