diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-08-07 14:44:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-07 14:44:41 +0200 |
commit | dcadbb8b4078060f0fa3b9c8f455e162d0417c0a (patch) | |
tree | e44c3abefb15ad67339f448d52bab52fcef8a07a /editor/editor_themes.cpp | |
parent | 722011bb7528ea8be3485704f6b81d2b74ff3b84 (diff) | |
parent | 9f6f7e0fcf2b59677ee45a4e6040ea3322894904 (diff) |
Merge pull request #10087 from volzhs/editor-button-align
Fix label align of button in editor
Diffstat (limited to 'editor/editor_themes.cpp')
-rw-r--r-- | editor/editor_themes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index 59c438c94d..807aed4267 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -238,7 +238,7 @@ Ref<Theme> create_editor_theme() { theme->set_stylebox("panel", "TabContainer", style_content_panel); theme->set_stylebox("Content", "EditorStyles", style_content_panel_vp); - Ref<StyleBoxFlat> style_button_type = make_flat_stylebox(dark_color_1, 4, 4, 6, 4); + Ref<StyleBoxFlat> style_button_type = make_flat_stylebox(dark_color_1, 6, 4, 6, 4); style_button_type->set_draw_center(true); style_button_type->set_border_size(border_width); style_button_type->set_light_color(light_color_1); |