mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[NEWDEV] Use new UI dialog for browsing folder
Add BIF_USENEWUI flag to BROWSEINFO. CORE-9281
This commit is contained in:
parent
bebdfda8b7
commit
b591bd3354
1 changed files with 1 additions and 1 deletions
|
@ -628,7 +628,7 @@ CHSourceDlgProc(
|
|||
LPITEMIDLIST pidl;
|
||||
|
||||
bi.hwndOwner = hwndDlg;
|
||||
bi.ulFlags = BIF_RETURNONLYFSDIRS;
|
||||
bi.ulFlags = BIF_USENEWUI | BIF_RETURNONLYFSDIRS;
|
||||
pidl = SHBrowseForFolder(&bi);
|
||||
if (pidl)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue