From c800653c6f4a4d8643ef8f0198a628e793e27eed Mon Sep 17 00:00:00 2001 From: poke1024 Date: Thu, 1 Mar 2018 18:03:53 +0100 Subject: [PATCH] Fix regression through fa98637acaab9135568bf0d43a65c9c96b59c32d (cherry picked from commit 89f607604e82bdce974a45029666c10586c6fe2a) --- scene/gui/rich_text_label.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp index 381c6c75a52..a92c3c326d8 100644 --- a/scene/gui/rich_text_label.cpp +++ b/scene/gui/rich_text_label.cpp @@ -319,6 +319,11 @@ int RichTextLabel::_process_line(ItemFrame *p_frame, const Vector2 &p_ofs, int & ENSURE_WIDTH(w); + if (p_mode == PROCESS_CACHE) { + line_ascent = ascent; + line_descent = descent; + } + if (end && c[end - 1] == ' ') { if (p_mode == PROCESS_CACHE) { spaces_size += font->get_char_size(' ').width;