From f4be1662341111db5ca530124e28fc4b70dac2b0 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 10 May 2010 12:34:17 +0200 Subject: [PATCH] winex11: Select for EnterNotify events on the desktop window in order to update the cursor. --- dlls/winex11.drv/desktop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winex11.drv/desktop.c b/dlls/winex11.drv/desktop.c index a2bc00486d7..4a36e46bf9b 100644 --- a/dlls/winex11.drv/desktop.c +++ b/dlls/winex11.drv/desktop.c @@ -142,7 +142,7 @@ Window CDECL X11DRV_create_desktop( UINT width, UINT height ) wine_tsx11_lock(); /* Create window */ - win_attr.event_mask = ExposureMask | KeyPressMask | KeyReleaseMask | + win_attr.event_mask = ExposureMask | KeyPressMask | KeyReleaseMask | EnterWindowMask | PointerMotionMask | ButtonPressMask | ButtonReleaseMask; win_attr.cursor = XCreateFontCursor( display, XC_top_left_arrow );