Commit f4be1662 authored by Alexandre Julliard's avatar Alexandre Julliard

winex11: Select for EnterNotify events on the desktop window in order to update the cursor.

parent 1afd0df7
......@@ -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 );
......
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