1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-05 17:28:47 +00:00

explorer: Hide the standalone systray window on close.

This commit is contained in:
Rémi Bernon 2023-11-29 10:19:36 +01:00 committed by Alexandre Julliard
parent 27c3cf93e3
commit 600206be39

View File

@ -938,6 +938,8 @@ static LRESULT WINAPI shell_traywnd_proc( HWND hwnd, UINT msg, WPARAM wparam, LP
case WM_CLOSE:
/* don't destroy the tray window, just hide it */
ShowWindow( hwnd, SW_HIDE );
hide_balloon( balloon_icon );
show_systray = FALSE;
return 0;
case WM_DRAWITEM: