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"));
1999
-
_close_save_scene_progress();
2001
+
if (show_progress) {
2002
+
_close_save_scene_progress();
2003
+
}
2000
2004
return;
2001
2005
}
2002
2006
2003
2007
if (!scene->get_scene_file_path().is_empty() && _validate_scene_recursive(scene->get_scene_file_path(), scene)) {
2004
2008
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"));
2005
-
_close_save_scene_progress();
2009
+
if (show_progress) {
2010
+
_close_save_scene_progress();
2011
+
}
2006
2012
return;
2007
2013
}
2008
2014
@@ -2014,7 +2020,9 @@ void EditorNode::_save_scene(String p_file, int idx) {
0 commit comments