mirror of
https://github.com/reactos/reactos.git
synced 2024-11-24 20:13:31 +08:00
[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:
parent
2875a70c0a
commit
9192d39f6e
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user