https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a63213272aface243b0c4e01c770e945d107f5d9

commit a63213272aface243b0c4e01c770e945d107f5d9
Author:     Katayama Hirofumi MZ <[email protected]>
AuthorDate: Wed Mar 10 21:00:36 2021 +0900
Commit:     GitHub <[email protected]>
CommitDate: Wed Mar 10 21:00:36 2021 +0900

    [SHELL32] Enable auto-completion on 'Folder Options' > 'Change Icon' (#3522)
    
    CORE-9281
---
 dll/win32/shell32/dialogs/dialogs.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dll/win32/shell32/dialogs/dialogs.cpp 
b/dll/win32/shell32/dialogs/dialogs.cpp
index 2094bc8d188..e576dbc0bfb 100644
--- a/dll/win32/shell32/dialogs/dialogs.cpp
+++ b/dll/win32/shell32/dialogs/dialogs.cpp
@@ -232,6 +232,8 @@ INT_PTR CALLBACK PickIconProc(
                 SendMessageW(pIconContext->hDlgCtrl, LB_SETCURSEL, 
pIconContext->Index, 0);
                 SendMessageW(pIconContext->hDlgCtrl, LB_SETTOPINDEX, 
pIconContext->Index, 0);
             }
+
+            SHAutoComplete(GetDlgItem(hwndDlg, IDC_EDIT_PATH), SHACF_DEFAULT);
             return TRUE;
         }
 

Reply via email to