Commit 616539a0 authored by Zhiyi Zhang's avatar Zhiyi Zhang Committed by Alexandre Julliard

shell32: Add LVS_SHOWSELALWAYS to the list view in shell views.

FWF_SHOWSELALWAYS is deprecated and has no effect. Manual tests show that LVS_SHOWSELALWAYS is always used. Signed-off-by: 's avatarZhiyi Zhang <zzhang@codeweavers.com>
parent a5820275
......@@ -358,7 +358,7 @@ static BOOL ShellView_CreateList (IShellViewImpl * This)
TRACE("%p\n",This);
dwStyle = WS_TABSTOP | WS_VISIBLE | WS_CHILDWINDOW | WS_CLIPSIBLINGS | WS_CLIPCHILDREN |
LVS_SHAREIMAGELISTS | LVS_EDITLABELS | LVS_ALIGNLEFT | LVS_AUTOARRANGE;
LVS_SHAREIMAGELISTS | LVS_EDITLABELS | LVS_ALIGNLEFT | LVS_AUTOARRANGE | LVS_SHOWSELALWAYS;
dwExStyle = WS_EX_CLIENTEDGE;
dwStyle |= ViewModeToListStyle(This->FolderSettings.ViewMode);
......
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