Browse Source

Merge pull request #35502 from Calinou/profiler-csv-save-anywhere

Allow saving anywhere when exporting CSV measures from the profiler
Rémi Verschelde 5 years ago
parent
commit
ab2f91bdfb
1 changed files with 1 additions and 0 deletions
  1. 1 0
      editor/script_editor_debugger.cpp

+ 1 - 0
editor/script_editor_debugger.cpp

@@ -1622,6 +1622,7 @@ void ScriptEditorDebugger::_output_clear() {
 void ScriptEditorDebugger::_export_csv() {
 
 	file_dialog->set_mode(EditorFileDialog::MODE_SAVE_FILE);
+	file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
 	file_dialog_mode = SAVE_CSV;
 	file_dialog->popup_centered_ratio();
 }