winex11: Don't delay mapping 0-sized layered windows.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49575 Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5f3bf30d8a
commit
b79211efec
|
@ -2485,7 +2485,8 @@ void CDECL X11DRV_WindowPosChanged( HWND hwnd, HWND insert_after, UINT swp_flags
|
||||||
BOOL needs_map = TRUE;
|
BOOL needs_map = TRUE;
|
||||||
|
|
||||||
/* layered windows are mapped only once their attributes are set */
|
/* layered windows are mapped only once their attributes are set */
|
||||||
if (GetWindowLongW( hwnd, GWL_EXSTYLE ) & WS_EX_LAYERED) needs_map = data->layered;
|
if (GetWindowLongW( hwnd, GWL_EXSTYLE ) & WS_EX_LAYERED)
|
||||||
|
needs_map = data->layered || IsRectEmpty( rectWindow );
|
||||||
release_win_data( data );
|
release_win_data( data );
|
||||||
if (needs_icon) fetch_icon_data( hwnd, 0, 0 );
|
if (needs_icon) fetch_icon_data( hwnd, 0, 0 );
|
||||||
if (needs_map) map_window( hwnd, new_style );
|
if (needs_map) map_window( hwnd, new_style );
|
||||||
|
|
Loading…
Reference in New Issue