Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion editor/themes/theme_classic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1720,7 +1720,7 @@ void ThemeClassic::populate_editor_styles(const Ref<EditorTheme> &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);
Expand Down
2 changes: 1 addition & 1 deletion editor/themes/theme_modern.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1689,7 +1689,7 @@ void ThemeModern::populate_editor_styles(const Ref<EditorTheme> &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);
Expand Down