diff options
Diffstat (limited to 'chrome/browser/views')
-rw-r--r-- | chrome/browser/views/shell_dialogs.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/views/shell_dialogs.cc b/chrome/browser/views/shell_dialogs.cc index ab85d0a..be3da01 100644 --- a/chrome/browser/views/shell_dialogs.cc +++ b/chrome/browser/views/shell_dialogs.cc @@ -304,7 +304,7 @@ void SelectFileDialogImpl::ExecuteSelectFile( } else if (type == SELECT_SAVEAS_FILE) { unsigned index = 0; success = win_util::SaveFileAsWithFilter(run_state.owner, default_path, - filter, default_extension, &index, &path); + filter, default_extension, false, &index, &path); DisableOwner(run_state.owner); } else if (type == SELECT_OPEN_FILE) { success = RunOpenFileDialog(title, filter, run_state.owner, &path); |