mirror of
https://github.com/reactos/reactos.git
synced 2025-04-03 20:21:17 +00:00
[EXPLORER] 'Run' (Win+R) should set the proper current directory (#593)
This commit is contained in:
parent
c771a6d339
commit
c84f398306
1 changed files with 8 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
* ReactOS Explorer
|
||||
*
|
||||
* Copyright 2006 - 2007 Thomas Weidenmueller <w3seek@reactos.org>
|
||||
* Copyright 2018 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
||||
*
|
||||
* this library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -365,7 +366,13 @@ public:
|
|||
|
||||
m_RunFileDlgOwner = hwnd;
|
||||
|
||||
RunFileDlg(hwnd, NULL, NULL, NULL, NULL, RFF_CALCDIRECTORY);
|
||||
// build the default directory from two environment variables
|
||||
CStringW strDefaultDir, strHomePath;
|
||||
strDefaultDir.GetEnvironmentVariable(L"HOMEDRIVE");
|
||||
strHomePath.GetEnvironmentVariable(L"HOMEPATH");
|
||||
strDefaultDir += strHomePath;
|
||||
|
||||
RunFileDlg(hwnd, NULL, (LPCWSTR)strDefaultDir, NULL, NULL, RFF_CALCDIRECTORY);
|
||||
|
||||
m_RunFileDlgOwner = NULL;
|
||||
::DestroyWindow(hwnd);
|
||||
|
|
Loading…
Reference in a new issue