[SHELL32] Fix multiple selection of desktop icons

This fixes the following issue : when selecting multiple icons
on the desktop, and then right-clicking; the Properties sheet
would immediately be displayed, conflicting with the context
menu.
This commit is contained in:
Manuel Bachmann 2017-11-02 19:55:03 +01:00 committed by Giannis Adamopoulos
parent 2875a70c0a
commit 9192d39f6e

View File

@ -858,6 +858,9 @@ HRESULT WINAPI CDesktopFolder::CallBack(IShellFolder *psf, HWND hwndOwner, IData
return S_OK;
}
if (uMsg != DFM_INVOKECOMMAND || wParam != DFM_CMD_PROPERTIES)
return S_OK;
PIDLIST_ABSOLUTE pidlFolder;
PUITEMID_CHILD *apidl;
UINT cidl;