diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-31 21:46:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-31 21:46:07 +0100 |
commit | 45553fd5868dd8733d7cab021f4f047360cace8e (patch) | |
tree | 5ab56de946f0bad1fb2577b46f296864dd0dc0ca /scene/resources/default_theme | |
parent | cc7d8817eb70c7a66914bbae4168fbbf2b9f29be (diff) | |
parent | 64c4a5b2833368a8ddafec69b62fe3742635a5e5 (diff) |
Merge pull request #56970 from YeldhamDev/rise_tabbar_rise
Diffstat (limited to 'scene/resources/default_theme')
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index be4dbfa64d..670b141080 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -821,8 +821,8 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, Ref<Te theme->set_stylebox("tab_selected", "TabBar", style_tab_selected); theme->set_stylebox("tab_unselected", "TabBar", style_tab_unselected); theme->set_stylebox("tab_disabled", "TabBar", style_tab_disabled); - theme->set_stylebox("close_bg_pressed", "TabBar", button_pressed); - theme->set_stylebox("close_bg_highlight", "TabBar", button_normal); + theme->set_stylebox("button_pressed", "TabBar", button_pressed); + theme->set_stylebox("button_highlight", "TabBar", button_normal); theme->set_icon("increment", "TabBar", icons["scroll_button_right"]); theme->set_icon("increment_highlight", "TabBar", icons["scroll_button_right_hl"]); |