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

This commit is contained in:
Saracen 2019-08-22 16:30:55 +01:00
parent 05a4310899
commit daf443bcbc

View File

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