From 3f5339a046085937ed62a006b40587d29d27332b Mon Sep 17 00:00:00 2001 From: Logan Detrick Date: Mon, 10 Nov 2025 15:44:49 -0800 Subject: [PATCH] Fix incorrect bottom panel theming --- editor/gui/editor_bottom_panel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/gui/editor_bottom_panel.cpp b/editor/gui/editor_bottom_panel.cpp index 7d3ff53e336..4169ab7086a 100644 --- a/editor/gui/editor_bottom_panel.cpp +++ b/editor/gui/editor_bottom_panel.cpp @@ -56,7 +56,7 @@ void EditorBottomPanel::_on_tab_changed(int p_idx) { } void EditorBottomPanel::_theme_changed() { - Ref bottom_tabbar_style = get_theme_stylebox("tabbar_background", "BottomPanel")->duplicate(); + Ref bottom_tabbar_style = EditorNode::get_singleton()->get_editor_theme()->get_stylebox("tabbar_background", "BottomPanel")->duplicate(); bottom_tabbar_style->set_content_margin(SIDE_RIGHT, bottom_hbox->get_minimum_size().x + bottom_tabbar_style->get_content_margin(SIDE_LEFT)); add_theme_style_override("tabbar_background", bottom_tabbar_style);