Module: wine Branch: master Commit: 7f86e6b849a7e68a9dc074a1f4e704a53c0f3c8f URL: http://source.winehq.org/git/wine.git/?a=commit;h=7f86e6b849a7e68a9dc074a1f4...
Author: Mikołaj Zalewski mikolaj@zalewski.pl Date: Wed Oct 25 22:00:35 2006 +0200
comdlg32: Select the Filename edit box content after the user navigated to a directory by entering there the name.
---
dlls/comdlg32/filedlg.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/comdlg32/filedlg.c b/dlls/comdlg32/filedlg.c index 1243d41..5410bf9 100644 --- a/dlls/comdlg32/filedlg.c +++ b/dlls/comdlg32/filedlg.c @@ -2021,6 +2021,7 @@ BOOL FILEDLG95_OnOpen(HWND hwnd) IShellView_Refresh(fodInfos->Shell.FOIShellView); } COMDLG32_SHFree(pidlCurrent); + SendMessageW(fodInfos->DlgInfos.hwndFileName, EM_SETSEL, 0, -1); } } ret = FALSE;