winex11: Select for EnterNotify events on the desktop window in order to update the cursor.
This commit is contained in:
parent
1afd0df7de
commit
f4be166234
|
@ -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 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue