winex11: Select StructureNotifyMask input on all windows.
diff --git a/dlls/winex11.drv/window.c b/dlls/winex11.drv/window.c
index db34f20..99156b6 100644
--- a/dlls/winex11.drv/window.c
+++ b/dlls/winex11.drv/window.c
@@ -307,8 +307,9 @@
attr->backing_store = NotUseful;
attr->event_mask = (ExposureMask | PointerMotionMask |
ButtonPressMask | ButtonReleaseMask | EnterWindowMask |
- KeyPressMask | KeyReleaseMask | FocusChangeMask | KeymapStateMask);
- if (data->managed) attr->event_mask |= StructureNotifyMask | PropertyChangeMask;
+ KeyPressMask | KeyReleaseMask | FocusChangeMask |
+ KeymapStateMask | StructureNotifyMask);
+ if (data->managed) attr->event_mask |= PropertyChangeMask;
return (CWOverrideRedirect | CWSaveUnder | CWColormap | CWCursor |
CWEventMask | CWBitGravity | CWBackingStore);