winex11: Get the icon from the window in case it was changed before the whole window was created.
diff --git a/dlls/winex11.drv/window.c b/dlls/winex11.drv/window.c
index aa860ee..c52d13a 100644
--- a/dlls/winex11.drv/window.c
+++ b/dlls/winex11.drv/window.c
@@ -849,8 +849,10 @@
if (data->wm_hints)
{
+ HICON icon = (HICON)SendMessageW( data->hwnd, WM_GETICON, ICON_BIG, 0 );
+ if (!icon) icon = (HICON)GetClassLongPtrW( data->hwnd, GCLP_HICON );
data->wm_hints->flags = 0;
- set_icon_hints( display, data, (HICON)GetClassLongPtrW( data->hwnd, GCLP_HICON ) );
+ set_icon_hints( display, data, icon );
}
}