Browse Source

sample convert option was not being saved

Juan Linietsky 9 years ago
parent
commit
e2be837520
1 changed files with 1 additions and 0 deletions
  1. 1 0
      tools/editor/project_export.cpp

+ 1 - 0
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();
 
 }