diff options
author | Robert Hernandez <killerjaguar26@gmail.com> | 2017-03-30 23:35:57 -0400 |
---|---|---|
committer | Robert Hernandez <killerjaguar26@gmail.com> | 2017-03-31 01:48:02 -0400 |
commit | 7a428206fec3018f2535768b8a1f20ab9f02aa22 (patch) | |
tree | 90a14676bf94e52e004fbe59179827b260b327c5 /scene/resources/default_theme | |
parent | a4a12a2b7b2f1acfae0d0f1158a1b14e79958da5 (diff) |
Fixed WindowDialog not aligning properly
Diffstat (limited to 'scene/resources/default_theme')
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index 60490d70ca..3f19c2eafc 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -544,7 +544,7 @@ void fill_default_theme(Ref<Theme> &t, const Ref<Font> &default_font, const Ref< t->set_font("title_font", "WindowDialog", large_font); t->set_color("title_color", "WindowDialog", Color(0, 0, 0)); - t->set_constant("title_height", "WindowDialog", 18 * scale); + t->set_constant("title_height", "WindowDialog", 20 * scale); t->set_icon("close", "WindowDialog", make_icon(close_png)); t->set_icon("close_hilite", "WindowDialog", make_icon(close_hl_png)); |