diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-09-04 08:05:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-04 08:05:17 +0200 |
commit | fb263b73aa0398948a3884ac81f8d971c8d1d98f (patch) | |
tree | 84bd073fb00bee642a8ca7e10080b15ca712284a /scene/resources/default_theme/default_theme.cpp | |
parent | ec8f44ed5f7eb2de54f7a35b1764113678a657a0 (diff) | |
parent | b6062852193baadc48ed0055f479b9895f4fca56 (diff) |
Merge pull request #10901 from toger5/script_background_cleanup
StyleBoxSupport for RichTextLabel and cleanup for script+docs backgrounds fixes #10685
Diffstat (limited to 'scene/resources/default_theme/default_theme.cpp')
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index 4ff635edeb..fdea5960e5 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -794,6 +794,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const // RichTextLabel theme->set_stylebox("focus", "RichTextLabel", focus); + theme->set_stylebox("normal", "RichTextLabel", make_stylebox(tree_bg_png, 3, 3, 3, 3)); theme->set_font("normal_font", "RichTextLabel", default_font); theme->set_font("bold_font", "RichTextLabel", default_font); |