[SHELL32] Remove view related items from File menu (#7429)

CORE-19778
This commit is contained in:
Whindmar Saksit 2024-10-08 18:17:24 +02:00 committed by GitHub
parent ee5338ff13
commit f4cb10f596
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1807,11 +1807,15 @@ HRESULT CDefView::FillFileMenu()
return hr;
// TODO: filter or something
if (!selcount)
{
DeleteMenu(hmenu, FCIDM_SHVIEW_VIEW, MF_BYCOMMAND);
DeleteMenu(hmenu, FCIDM_SHVIEW_ARRANGE, MF_BYCOMMAND);
DeleteMenu(hmenu, FCIDM_SHVIEW_REFRESH, MF_BYCOMMAND);
}
Shell_MergeMenus(hFileMenu, hmenu, 0, 0, 0xFFFF, MM_ADDSEPARATOR | MM_SUBMENUSHAVEIDS);
::DestroyMenu(hmenu);
return S_OK;
}