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

This commit is contained in:
Alexandre Julliard 2010-05-10 12:34:17 +02:00
parent 1afd0df7de
commit f4be166234
1 changed files with 1 additions and 1 deletions

View File

@ -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 );