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
602f0c10
Commit
602f0c10
authored
Aug 19, 2005
by
Jason Edmeades
Committed by
Alexandre Julliard
Aug 19, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle context menu->refresh, and F5 to initiate a refresh of the file
dialog.
parent
8f8ec2ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
shlview.c
dlls/shell32/shlview.c
+7
-0
shv_bg_cmenu.c
dlls/shell32/shv_bg_cmenu.c
+4
-0
No files found.
dlls/shell32/shlview.c
View file @
602f0c10
...
...
@@ -1506,6 +1506,13 @@ static LRESULT ShellView_OnNotify(IShellViewImpl * This, UINT CtlID, LPNMHDR lpn
/* free pidl array memory */
HeapFree
(
GetProcessHeap
(),
0
,
pItems
);
}
/* Initiate a refresh */
else
if
(
plvKeyDown
->
wVKey
==
VK_F5
)
{
IShellView_Refresh
((
IShellView
*
)
This
);
}
else
FIXME
(
"LVN_KEYDOWN key=0x%08x
\n
"
,
plvKeyDown
->
wVKey
);
}
...
...
dlls/shell32/shv_bg_cmenu.c
View file @
602f0c10
...
...
@@ -361,6 +361,10 @@ static HRESULT WINAPI ISVBgCm_fnInvokeCommand(
{
switch
(
LOWORD
(
lpcmi
->
lpVerb
))
{
case
FCIDM_SHVIEW_REFRESH
:
if
(
lpSV
)
IShellView_Refresh
(
lpSV
);
break
;
case
FCIDM_SHVIEW_NEWFOLDER
:
DoNewFolder
(
iface
,
lpSV
);
break
;
...
...
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