Rémi Bernon : explorer: Hide the standalone systray window on close.
Module: wine Branch: master Commit: 600206be3924519a43b0623717a47adc90c84668 URL: https://gitlab.winehq.org/wine/wine/-/commit/600206be3924519a43b0623717a47ad... Author: Rémi Bernon <rbernon(a)codeweavers.com> Date: Wed Nov 29 10:19:36 2023 +0100 explorer: Hide the standalone systray window on close. --- programs/explorer/systray.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/programs/explorer/systray.c b/programs/explorer/systray.c index 2af028c0ef9..e3ec17a7708 100644 --- a/programs/explorer/systray.c +++ b/programs/explorer/systray.c @@ -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:
participants (1)
-
Alexandre Julliard