Added missing event mask.

This commit is contained in:
crs 2002-04-29 13:49:56 +00:00
parent c5f6b34d85
commit 6299eea7b6
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ void CXWindowsSecondaryScreen::onOpenDisplay()
// as the cursor enters the screen or the display's real cursor is // as the cursor enters the screen or the display's real cursor is
// moved. // moved.
XSetWindowAttributes attr; XSetWindowAttributes attr;
attr.event_mask = LeaveWindowMask; attr.event_mask = LeaveWindowMask | PropertyChangeMask;
attr.do_not_propagate_mask = 0; attr.do_not_propagate_mask = 0;
attr.override_redirect = True; attr.override_redirect = True;
attr.cursor = createBlankCursor(); attr.cursor = createBlankCursor();