diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-11-09 00:07:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-09 00:07:41 +0100 |
commit | 6c4737341d2871ab7946f03dc2792a628ff313d8 (patch) | |
tree | 52ba79db8ee4160a6e41c89e8d7a3d46149ddf08 /scene/resources | |
parent | 43ff899fa7141da03e2ed5099752190db0c84262 (diff) | |
parent | 5f9cd9ccbc747ed948e38fab14e1eb66ce9d57c7 (diff) |
Merge pull request #54649 from bruvzg/shadows
Diffstat (limited to 'scene/resources')
-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 f21a070133..a1d76ef352 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -940,7 +940,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const theme->set_constant("shadow_offset_x", "RichTextLabel", 1 * scale); theme->set_constant("shadow_offset_y", "RichTextLabel", 1 * scale); - theme->set_constant("shadow_as_outline", "RichTextLabel", 0 * scale); + theme->set_constant("shadow_outline_size", "RichTextLabel", 1 * scale); theme->set_constant("line_separation", "RichTextLabel", 0 * scale); theme->set_constant("table_hseparation", "RichTextLabel", 3 * scale); |