diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-01-14 09:09:08 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-01-14 09:09:35 -0300 |
commit | e2be837520c0a6e4fed19b714f0477cb9c32eb78 (patch) | |
tree | 0b4181b9f68597abc75770acfa26685a7bd368ec /tools/editor | |
parent | 0860f3c196e6228f65ca5fee4c077b4509d77175 (diff) |
sample convert option was not being saved
Diffstat (limited to 'tools/editor')
-rw-r--r-- | tools/editor/project_export.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/editor/project_export.cpp b/tools/editor/project_export.cpp index d034edc80d..7690d31e7b 100644 --- a/tools/editor/project_export.cpp +++ b/tools/editor/project_export.cpp @@ -258,6 +258,7 @@ void ProjectExportDialog::_sample_convert_edited(int what) { EditorImportExport::get_singleton()->sample_set_action( EditorImportExport::SampleAction(sample_mode->get_selected())); EditorImportExport::get_singleton()->sample_set_max_hz( sample_max_hz->get_val() ); EditorImportExport::get_singleton()->sample_set_trim( sample_trim->is_pressed() ); + _save_export_cfg(); } |