Commit 6be2138d authored by Tim Clem's avatar Tim Clem Committed by Alexandre Julliard

winex11.drv: Don't ignore virtual EnterNotify events.

These represent the mouse entering a client window child, and if no MotionNotify events follow, we'll be left out of sync with X.
parent d9a80adc
......@@ -1811,7 +1811,6 @@ BOOL X11DRV_EnterNotify( HWND hwnd, XEvent *xev )
TRACE( "hwnd %p/%lx pos %d,%d detail %d\n", hwnd, event->window, event->x, event->y, event->detail );
if (event->detail == NotifyVirtual) return FALSE;
if (hwnd == x11drv_thread_data()->grab_hwnd) return FALSE;
/* simulate a mouse motion event */
......
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