diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-04-27 19:33:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-27 19:33:40 +0200 |
commit | 0582cefcbb6c4dc0f5d36000f39c627ecf5f9b70 (patch) | |
tree | 853f1d2a72ed7c0be58c1a67c2b802e7214dfd36 /scene/resources | |
parent | 95cfce661bbe9700209c09dfe297ab7ef5ebfe09 (diff) | |
parent | cd8d3219619d041cb29f4cf1047f2e68eea4a8e4 (diff) |
Merge pull request #48241 from akien-mga/tabs-panel-style-unused
Tabs: Remove unused 'panel' stylebox from default theme
Diffstat (limited to 'scene/resources')
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index b9f4a7a741..7c00c6d146 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -830,7 +830,6 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const theme->set_stylebox("tab_selected", "Tabs", sb_expand(make_stylebox(tab_current_png, 4, 3, 4, 1, 16, 3, 16, 2), 2, 2, 2, 2)); theme->set_stylebox("tab_unselected", "Tabs", sb_expand(make_stylebox(tab_behind_png, 5, 4, 5, 1, 16, 5, 16, 2), 3, 3, 3, 3)); theme->set_stylebox("tab_disabled", "Tabs", sb_expand(make_stylebox(tab_disabled_png, 5, 5, 5, 1, 16, 6, 16, 4), 3, 0, 3, 3)); - theme->set_stylebox("panel", "Tabs", tc_sb); theme->set_stylebox("button_pressed", "Tabs", make_stylebox(button_pressed_png, 4, 4, 4, 4)); theme->set_stylebox("button", "Tabs", make_stylebox(button_normal_png, 4, 4, 4, 4)); |