Fix editor saving blank scenes (for real)

(cherry picked from commit 8144ac79cf)
This commit is contained in:
kobewi 2021-11-07 16:38:56 +01:00 committed by Rémi Verschelde
parent 930d28e6cb
commit e2fb8739df
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

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