Pārlūkot izejas kodu

Don't save scripts when exiting editor

kobewi 2 gadi atpakaļ
vecāks
revīzija
97bd6c0539
1 mainītis faili ar 3 papildinājumiem un 1 dzēšanām
  1. 3 1
      editor/plugins/script_editor_plugin.cpp

+ 3 - 1
editor/plugins/script_editor_plugin.cpp

@@ -4058,7 +4058,9 @@ void ScriptEditorPlugin::selected_notify() {
 }
 
 void ScriptEditorPlugin::save_external_data() {
-	script_editor->save_all_scripts();
+	if (!EditorNode::get_singleton()->is_exiting()) {
+		script_editor->save_all_scripts();
+	}
 }
 
 void ScriptEditorPlugin::apply_changes() {