Skip to content

Commit

Permalink
Fixed upload dialogs so they should follow the Windows 2000 design.
Browse files Browse the repository at this point in the history
  • Loading branch information
win32ss committed Feb 6, 2024
1 parent ba1d6ab commit 9ab0b50
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ui/shell_dialogs/execute_select_file_win.cc
Original file line number Diff line number Diff line change
Expand Up @@ -623,6 +623,7 @@ bool RunOpenFileDialog(HWND owner,
open_file_name.hwndOwner = owner;
open_file_name.lpstrFile = filename_buffer;
open_file_name.nMaxFile = UNICODE_STRING_MAX_CHARS;
open_file_name.Flags |= OFN_EXPLORER;
bool success = ::GetOpenFileNameW((OPENFILENAMEW*)&open_file_name);
BaseShellDialogImpl::DisableOwner(owner);

Expand Down

0 comments on commit 9ab0b50

Please sign in to comment.