Skip to content

Commit

Permalink
Fix scene tab close
Browse files Browse the repository at this point in the history
  • Loading branch information
hvarga committed Jul 27, 2023
1 parent 202e4b2 commit 51923fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion editor/editor_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3617,7 +3617,9 @@ void EditorNode::set_current_scene(int p_idx) {
_update_title();
_update_scene_tabs();

call_deferred(SNAME("_set_main_scene_state"), state, get_edited_scene()); // Do after everything else is done setting up.
if (tabs_to_close.is_empty()) {
call_deferred(SNAME("_set_main_scene_state"), state, get_edited_scene()); // Do after everything else is done setting up.
}
}

void EditorNode::setup_color_picker(ColorPicker *p_picker) {
Expand Down

0 comments on commit 51923fc

Please sign in to comment.