Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
7dcf573c
Commit
7dcf573c
authored
Apr 09, 2023
by
Jactry Zeng
Committed by
Alexandre Julliard
May 25, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Update view mode flags while creating IShellView for IExplorerBrowser.
parent
3ed6413a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
ebrowser.c
dlls/shell32/ebrowser.c
+1
-0
ebrowser.c
dlls/shell32/tests/ebrowser.c
+2
-0
No files found.
dlls/shell32/ebrowser.c
View file @
7dcf573c
...
...
@@ -362,6 +362,7 @@ static HRESULT create_new_shellview(ExplorerBrowserImpl *This, IShellItem *psi)
This
->
hwnd_sv
=
NULL
;
}
This
->
fs
.
fFlags
|=
FWF_USESEARCHFOLDER
|
FWF_FULLROWSELECT
|
FWF_NOCLIENTEDGE
;
hr
=
IShellView_CreateViewWindow
(
psv
,
This
->
psv
,
&
This
->
fs
,
psb
,
&
This
->
sv_rc
,
&
hwnd_new
);
if
(
SUCCEEDED
(
hr
))
{
...
...
dlls/shell32/tests/ebrowser.c
View file @
7dcf573c
...
...
@@ -1726,6 +1726,8 @@ static void test_folder_settings(void)
ok
(
hr
==
E_INVALIDARG
,
"Got hr %#lx.
\n
"
,
hr
);
ebrowser_browse_to_desktop
(
browser
);
settings
.
fFlags
|=
FWF_USESEARCHFOLDER
|
FWF_FULLROWSELECT
|
FWF_NOCLIENTEDGE
;
CHECK_SETTINGS
(
browser
,
settings
);
settings
.
ViewMode
=
FVM_AUTO
;
settings
.
fFlags
=
FWF_AUTOARRANGE
;
hr
=
IExplorerBrowser_SetFolderSettings
(
browser
,
&
settings
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment