From: Rémi Bernon rbernon@codeweavers.com
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57515 --- programs/explorer/systray.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/explorer/systray.c b/programs/explorer/systray.c index ae0d66b2901..fcbceb6fda4 100644 --- a/programs/explorer/systray.c +++ b/programs/explorer/systray.c @@ -1114,7 +1114,7 @@ static LRESULT WINAPI shell_traywnd_proc( HWND hwnd, UINT msg, WPARAM wparam, LP { WINDOWPOS *p = (WINDOWPOS *)lparam;
- if (p->flags & SWP_SHOWWINDOW && (!show_systray || (!nb_displayed && !enable_taskbar))) + if (p->flags & SWP_SHOWWINDOW && (!show_systray || !nb_displayed) && !enable_taskbar) { TRACE( "WM_WINDOWPOSCHANGING clearing SWP_SHOWWINDOW.\n" ); p->flags &= ~SWP_SHOWWINDOW;