You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
show_accept(TTR("This operation can't be done without a tree root."), TTR("OK"));
1998
-
_close_save_scene_progress();
2000
+
if (show_progress) {
2001
+
_close_save_scene_progress();
2002
+
}
1999
2003
return;
2000
2004
}
2001
2005
2002
2006
if (!scene->get_scene_file_path().is_empty() && _validate_scene_recursive(scene->get_scene_file_path(), scene)) {
2003
2007
show_accept(TTR("This scene can't be saved because there is a cyclic instance inclusion.\nPlease resolve it and then attempt to save again."), TTR("OK"));
2004
-
_close_save_scene_progress();
2008
+
if (show_progress) {
2009
+
_close_save_scene_progress();
2010
+
}
2005
2011
return;
2006
2012
}
2007
2013
@@ -2013,7 +2019,9 @@ void EditorNode::_save_scene(String p_file, int idx) {
0 commit comments