Commit 3f6fec36 authored by Alexandre Julliard's avatar Alexandre Julliard

winex11: Ignore ConfigureNotify events on unmapped windows.

parent cef3bc62
......@@ -544,6 +544,7 @@ void X11DRV_ConfigureNotify( HWND hwnd, XEvent *xev )
if (!hwnd) return;
if (!(data = X11DRV_get_win_data( hwnd ))) return;
if (!data->mapped) return;
/* Get geometry */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment