1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

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

Allow saving anywhere when exporting CSV measures from the profiler
This commit is contained in:
Rémi Verschelde
2020-01-31 11:19:29 +01:00
committed by GitHub

View File

@@ -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();
}