mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 06:02:56 +00: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
1 changed files with 3 additions and 0 deletions
|
@ -858,6 +858,9 @@ HRESULT WINAPI CDesktopFolder::CallBack(IShellFolder *psf, HWND hwndOwner, IData
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (uMsg != DFM_INVOKECOMMAND || wParam != DFM_CMD_PROPERTIES)
|
||||||
|
return S_OK;
|
||||||
|
|
||||||
PIDLIST_ABSOLUTE pidlFolder;
|
PIDLIST_ABSOLUTE pidlFolder;
|
||||||
PUITEMID_CHILD *apidl;
|
PUITEMID_CHILD *apidl;
|
||||||
UINT cidl;
|
UINT cidl;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue