From 1f9dbbe07bc1fa3fbfdd0e97c5d54c6422ae7a15 Mon Sep 17 00:00:00 2001 From: Silc Renew Date: Tue, 7 Feb 2023 03:00:33 +0900 Subject: Fix AnimationTrackEditor doesn't open when selecting AnimationPlayer --- editor/editor_node.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index f6fe6c9f76..1e7d0cc1cb 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -5624,8 +5624,9 @@ void EditorNode::_bottom_panel_switch(bool p_enable, int p_idx) { return; } - bottom_panel_updating = true; if (p_enable) { + bottom_panel_updating = true; + for (int i = 0; i < bottom_panel_items.size(); i++) { bottom_panel_items[i].button->set_pressed(i == p_idx); bottom_panel_items[i].control->set_visible(i == p_idx); @@ -5642,7 +5643,6 @@ void EditorNode::_bottom_panel_switch(bool p_enable, int p_idx) { top_split->hide(); } bottom_panel_raise->show(); - } else { bottom_panel->add_theme_style_override("panel", gui_base->get_theme_stylebox(SNAME("BottomPanel"), SNAME("EditorStyles"))); bottom_panel_items[p_idx].button->set_pressed(false); -- cgit v1.2.3