From 6299eea7b676f3922db2003949557e8e8e5e4d7e Mon Sep 17 00:00:00 2001 From: crs Date: Mon, 29 Apr 2002 13:49:56 +0000 Subject: [PATCH] Added missing event mask. --- client/CXWindowsSecondaryScreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/CXWindowsSecondaryScreen.cpp b/client/CXWindowsSecondaryScreen.cpp index 79ff7efd..84995990 100644 --- a/client/CXWindowsSecondaryScreen.cpp +++ b/client/CXWindowsSecondaryScreen.cpp @@ -319,7 +319,7 @@ void CXWindowsSecondaryScreen::onOpenDisplay() // as the cursor enters the screen or the display's real cursor is // moved. XSetWindowAttributes attr; - attr.event_mask = LeaveWindowMask; + attr.event_mask = LeaveWindowMask | PropertyChangeMask; attr.do_not_propagate_mask = 0; attr.override_redirect = True; attr.cursor = createBlankCursor();