Remove unused panelf and panelnc styles

Fixes godotengine/godot-docs#2426
This commit is contained in:
Bojidar Marinov 2019-05-03 09:44:46 +03:00
parent 46b6fb83ef
commit 3d47dad2b1
No known key found for this signature in database
GPG key ID: 4B0FD31949AD430D
2 changed files with 0 additions and 12 deletions

View file

@ -15,9 +15,5 @@
<theme_items> <theme_items>
<theme_item name="panel" type="StyleBox"> <theme_item name="panel" type="StyleBox">
</theme_item> </theme_item>
<theme_item name="panelf" type="StyleBox">
</theme_item>
<theme_item name="panelnc" type="StyleBox">
</theme_item>
</theme_items> </theme_items>
</class> </class>

View file

@ -833,14 +833,6 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
theme->set_constant("autohide", "HSplitContainer", 1 * scale); theme->set_constant("autohide", "HSplitContainer", 1 * scale);
theme->set_constant("autohide", "VSplitContainer", 1 * scale); theme->set_constant("autohide", "VSplitContainer", 1 * scale);
// ReferenceRect
Ref<StyleBoxTexture> ttnc = make_stylebox(full_panel_bg_png, 8, 8, 8, 8);
ttnc->set_draw_center(false);
theme->set_stylebox("panelnc", "Panel", ttnc);
theme->set_stylebox("panelf", "Panel", tc_sb);
Ref<StyleBoxTexture> sb_pc = make_stylebox(tab_container_bg_png, 4, 4, 4, 4, 7, 7, 7, 7); Ref<StyleBoxTexture> sb_pc = make_stylebox(tab_container_bg_png, 4, 4, 4, 4, 7, 7, 7, 7);
theme->set_stylebox("panel", "PanelContainer", sb_pc); theme->set_stylebox("panel", "PanelContainer", sb_pc);