Merge pull request #54721 from KoBeWi/fix_saving_blank_scenes-true_edition

Fix editor saving blank scenes (for real)
This commit is contained in:
Rémi Verschelde 2021-11-07 20:33:30 +01:00 committed by GitHub
commit 79f233349f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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