winex11: Ignore ConfigureNotify events on unmapped windows.
This commit is contained in:
parent
cef3bc62ce
commit
3f6fec362f
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Reference in New Issue