Skip to content

Commit

Permalink
shell32: Add LVS_SHOWSELALWAYS to the list view in shell views.
Browse files Browse the repository at this point in the history
FWF_SHOWSELALWAYS is deprecated and has no effect. Manual tests show that LVS_SHOWSELALWAYS is
always used.

Signed-off-by: Zhiyi Zhang <[email protected]>
  • Loading branch information
zzhiyi authored and julliard committed Jul 15, 2022
1 parent a582027 commit 616539a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlls/shell32/shlview.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 616539a

Please sign in to comment.