1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Respect the expand margin for StyleBoTextures again.

This commit is contained in:
Ray Koopa
2017-04-12 15:11:44 +02:00
parent e46af1e236
commit 75f684bc17
3 changed files with 33 additions and 33 deletions

View File

@@ -538,10 +538,8 @@ void fill_default_theme(Ref<Theme> &t, const Ref<Font> &default_font, const Ref<
// WindowDialog
Ref<StyleBoxTexture> style_pp_win = sb_expand(make_stylebox(popup_window_png, 10, 26, 10, 8), 8, 24, 8, 6);
t->set_stylebox("panel", "WindowDialog", style_pp_win);
t->set_constant("titlebar_height", "WindowDialog", 20 * scale);
t->set_constant("scaleborder_size", "WindowDialog", 4);
t->set_stylebox("panel", "WindowDialog", sb_expand(make_stylebox(popup_window_png, 10, 26, 10, 8), 8, 24, 8, 6));
t->set_constant("scaleborder_size", "WindowDialog", 4 * scale);
t->set_font("title_font", "WindowDialog", large_font);
t->set_color("title_color", "WindowDialog", Color(0, 0, 0));