Skip to content

Commit

Permalink
Merge pull request #54721 from KoBeWi/fix_saving_blank_scenes-true_ed…
Browse files Browse the repository at this point in the history
…ition

Fix editor saving blank scenes (for real)
  • Loading branch information
akien-mga authored Nov 7, 2021
2 parents f49d679 + 8144ac7 commit 79f2333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/editor_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1791,7 +1791,7 @@ void EditorNode::_save_all_scenes() {
} else {
_save_scene_with_preview(scene->get_scene_file_path());
}
} else {
} else if (scene->get_scene_file_path() != "") {
all_saved = false;
}
}
Expand Down

0 comments on commit 79f2333

Please sign in to comment.