From cec21ab82cff23b2fa97a7c5e25961a38341c8cf Mon Sep 17 00:00:00 2001 From: Umang Kalra Date: Fri, 31 Jul 2020 00:36:46 +0530 Subject: [PATCH] Fix RichTextLabel center alignment bug Fixes #40207. --- scene/gui/rich_text_label.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp index 41cd67dbf11..29337e20f3e 100644 --- a/scene/gui/rich_text_label.cpp +++ b/scene/gui/rich_text_label.cpp @@ -188,7 +188,7 @@ int RichTextLabel::_process_line(ItemFrame *p_frame, const Vector2 &p_ofs, int & wofs += line_ofs; } - int begin = wofs; + int begin = margin; Ref cfont = _find_font(it); if (cfont.is_null()) {