From a63213272aface243b0c4e01c770e945d107f5d9 Mon Sep 17 00:00:00 2001 From: Katayama Hirofumi MZ Date: Wed, 10 Mar 2021 21:00:36 +0900 Subject: [PATCH] [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; }