Commit 1ee38eaf authored by Zhiyi Zhang's avatar Zhiyi Zhang Committed by Alexandre Julliard

shell32: Correctly check SVSI_EDIT.

The value of SVSI_EDIT is 0x3. Signed-off-by: 's avatarZhiyi Zhang <zzhang@codeweavers.com>
parent f81c82d4
......@@ -2873,7 +2873,7 @@ static HRESULT WINAPI FolderView_SelectItem(IFolderView2 *iface, int item, DWORD
SendMessageW(This->hWndList, LVM_SETITEMSTATE, item, (LPARAM)&lvItem);
if (flags & SVSI_EDIT)
if ((flags & SVSI_EDIT) == SVSI_EDIT)
SendMessageW(This->hWndList, LVM_EDITLABELW, item, 0);
return S_OK;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment