Răsfoiți Sursa

Fix editor saving blank scenes (for real)

kobewi 3 ani în urmă
părinte
comite
8144ac79cf
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      editor/editor_node.cpp

+ 1 - 1
editor/editor_node.cpp

@@ -1791,7 +1791,7 @@ void EditorNode::_save_all_scenes() {
 				} else {
 				} else {
 					_save_scene_with_preview(scene->get_scene_file_path());
 					_save_scene_with_preview(scene->get_scene_file_path());
 				}
 				}
-			} else {
+			} else if (scene->get_scene_file_path() != "") {
 				all_saved = false;
 				all_saved = false;
 			}
 			}
 		}
 		}