summaryrefslogtreecommitdiff
path: root/scene/resources
diff options
context:
space:
mode:
authorrequizm <mehmet41650@gmail.com>2021-08-19 02:57:51 +0300
committerrequizm <mehmet41650@gmail.com>2021-08-20 23:03:13 +0300
commit39b90802d06d102f9494404d181ed6eac4590f17 (patch)
treef9d76989c1c47c48c901175b5f1c4c977bd11d49 /scene/resources
parent6cea7ebae4721e05ea7013c6159a751f7498ea85 (diff)
Fix line_separation constant working incorrectly in RichTextLabel
Diffstat (limited to 'scene/resources')
-rw-r--r--scene/resources/default_theme/default_theme.cpp2
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 8208c55801..c0ce24f89b 100644
--- a/scene/resources/default_theme/default_theme.cpp
+++ b/scene/resources/default_theme/default_theme.cpp
@@ -916,7 +916,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
theme->set_constant("shadow_offset_y", "RichTextLabel", 1 * scale);
theme->set_constant("shadow_as_outline", "RichTextLabel", 0 * scale);
- theme->set_constant("line_separation", "RichTextLabel", 1 * scale);
+ theme->set_constant("line_separation", "RichTextLabel", 0 * scale);
theme->set_constant("table_hseparation", "RichTextLabel", 3 * scale);
theme->set_constant("table_vseparation", "RichTextLabel", 3 * scale);