Browse Source

Fix an exception when trying to close down editor with plugins enabled.

Saracen 6 years ago
parent
commit
daf443bcbc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      editor/editor_autoload_settings.cpp

+ 2 - 2
editor/editor_autoload_settings.cpp

@@ -439,11 +439,11 @@ void EditorAutoloadSettings::update_autoload() {
 		}
 		if (info.in_editor) {
 			ERR_CONTINUE(!info.node);
-			get_tree()->get_root()->remove_child(info.node);
+			get_tree()->get_root()->call_deferred("remove_child", info.node);
 		}
 
 		if (info.node) {
-			memdelete(info.node);
+			info.node->queue_delete();
 			info.node = NULL;
 		}
 	}