winex11.drv: Map the window in UpdateLayeredWindow.
Fixes a regression introduced by 8892b79118
,
because set_window_pos is called before UpdateLayeredWindow, which calls
the driver's WindowPosChanged earlier.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51984
Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0b9ec86c26
commit
a22dd45a79
|
@ -2716,7 +2716,7 @@ BOOL CDECL X11DRV_UpdateLayeredWindow( HWND hwnd, const UPDATELAYEREDWINDOWINFO
|
|||
RECT rect, src_rect;
|
||||
HDC hdc = 0;
|
||||
HBITMAP dib;
|
||||
BOOL ret = FALSE;
|
||||
BOOL mapped, ret = FALSE;
|
||||
|
||||
if (!(data = get_win_data( hwnd ))) return FALSE;
|
||||
|
||||
|
@ -2737,8 +2737,18 @@ BOOL CDECL X11DRV_UpdateLayeredWindow( HWND hwnd, const UPDATELAYEREDWINDOWINFO
|
|||
else set_surface_color_key( surface, color_key );
|
||||
|
||||
if (surface) window_surface_add_ref( surface );
|
||||
mapped = data->mapped;
|
||||
release_win_data( data );
|
||||
|
||||
/* layered windows are mapped only once their attributes are set */
|
||||
if (!mapped)
|
||||
{
|
||||
DWORD style = GetWindowLongW( hwnd, GWL_STYLE );
|
||||
|
||||
if ((style & WS_VISIBLE) && ((style & WS_MINIMIZE) || is_window_rect_mapped( window_rect )))
|
||||
map_window( hwnd, style );
|
||||
}
|
||||
|
||||
if (!surface) return FALSE;
|
||||
if (!info->hdcSrc)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue