[PATCH 0/1] MR9896: shell32: Add attributes to registry for CLSID_Printers.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=38740 See https://bugs.winehq.org/show_bug.cgi?id=38740#c10 for cause of this bug. (To exactly match the registry key shown in my Windows 10 VM, I also added the SFGAO_CANLINK flag) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9896
From: Louis Lenders <xerox.xerox2000x@gmail.com> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=38740 See https://bugs.winehq.org/show_bug.cgi?id=38740#c10 for cause of this bug. (To exactly match the registry key shown in my Windows 10 VM, I also added the SFGAO_CANLINK flag) --- dlls/shell32/shellpath.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index f242903ab0c..6eb5d5cc345 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -3343,7 +3343,9 @@ static HRESULT set_folder_attributes(void) { &CLSID_RecycleBin, FALSE, FALSE, FALSE, SFGAO_FOLDER|SFGAO_DROPTARGET|SFGAO_HASPROPSHEET }, { &CLSID_ControlPanel, FALSE, TRUE, TRUE, - SFGAO_FOLDER|SFGAO_HASSUBFOLDER } + SFGAO_FOLDER|SFGAO_HASSUBFOLDER }, + { &CLSID_Printers, FALSE, FALSE, FALSE, + SFGAO_FOLDER|SFGAO_CANLINK } }; unsigned int i; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9896
participants (2)
-
Louis Lenders -
Louis Lenders (@xe)