diff --git a/editor/themes/theme_classic.cpp b/editor/themes/theme_classic.cpp index d45d7b14976ed..f13b73c6f2929 100644 --- a/editor/themes/theme_classic.cpp +++ b/editor/themes/theme_classic.cpp @@ -1720,7 +1720,7 @@ void ThemeClassic::populate_editor_styles(const Ref &p_theme, Edito p_theme->set_stylebox("tabbar_background", "BottomPanel", style_bottom_panel_tabbar); p_theme->set_stylebox("tab_selected", "BottomPanel", style_bottom_tab_selected); p_theme->set_stylebox("tab_hovered", "BottomPanel", style_bottom_tab_hover); - p_theme->set_stylebox("tab_focus", "BottomPanel", menu_transparent_style); + p_theme->set_stylebox("tab_focus", "BottomPanel", p_config.button_style_focus); p_theme->set_stylebox("tab_unselected", "BottomPanel", style_bottom_tab); p_theme->set_color("font_unselected_color", "BottomPanel", p_config.font_color); p_theme->set_color("font_hovered_color", "BottomPanel", p_config.font_hover_color); diff --git a/editor/themes/theme_modern.cpp b/editor/themes/theme_modern.cpp index 6e8d56f637e0c..e88c9b46c2308 100644 --- a/editor/themes/theme_modern.cpp +++ b/editor/themes/theme_modern.cpp @@ -1689,7 +1689,7 @@ void ThemeModern::populate_editor_styles(const Ref &p_theme, Editor p_theme->set_stylebox("tabbar_background", "BottomPanel", style_bottom_panel_tabbar); p_theme->set_stylebox("tab_selected", "BottomPanel", bottom_panel_button_hover); p_theme->set_stylebox("tab_hovered", "BottomPanel", bottom_panel_button_hover); - p_theme->set_stylebox("tab_focus", "BottomPanel", p_config.base_empty_style); + p_theme->set_stylebox("tab_focus", "BottomPanel", p_config.focus_style); p_theme->set_stylebox("tab_unselected", "BottomPanel", style_bottom_tab); p_theme->set_color("font_unselected_color", "BottomPanel", p_config.font_color); p_theme->set_color("font_hovered_color", "BottomPanel", p_config.font_hover_color);