1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

Preserve folding when sub-scene is changed

This commit is contained in:
Tomasz Chabora
2019-09-10 14:43:46 +02:00
parent 24e1039eb6
commit 7e89ec2cd8

View File

@@ -3133,7 +3133,14 @@ void EditorNode::_clear_undo_history() {
void EditorNode::set_current_scene(int p_idx) {
//Save the folding in case the scene gets reloaded.
if (editor_data.get_scene_path(p_idx) != "")
editor_folding.save_scene_folding(editor_data.get_edited_scene_root(p_idx), editor_data.get_scene_path(p_idx));
if (editor_data.check_and_update_scene(p_idx)) {
if (editor_data.get_scene_path(p_idx) != "")
editor_folding.load_scene_folding(editor_data.get_edited_scene_root(p_idx), editor_data.get_scene_path(p_idx));
call_deferred("_clear_undo_history");
}