Skip to content

Commit

Permalink
explorer: Don't pop start menu on "minimize all windows" systray comm…
Browse files Browse the repository at this point in the history
…and.

CW-Bug-Id: #23178
  • Loading branch information
Paul Gofman committed Jan 9, 2024
1 parent ed44de9 commit a9ece6e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion programs/explorer/systray.c
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,15 @@ static LRESULT WINAPI tray_wndproc( HWND hwnd, UINT msg, WPARAM wparam, LPARAM l
break;

case WM_COMMAND:
if (HIWORD(wparam) == BN_CLICKED) click_taskbar_button( (HWND)lparam );
if (HIWORD(wparam) == BN_CLICKED)
{
if (LOWORD(wparam) == 419)
{
FIXME( "Minimize all windows command is not supported.\n" );
break;
}
click_taskbar_button( (HWND)lparam );
}
break;

case WM_CONTEXTMENU:
Expand Down

0 comments on commit a9ece6e

Please sign in to comment.