From 3f50ab6f034d312a27f7fc77889f0803b2a53aa7 Mon Sep 17 00:00:00 2001 From: Kni1feKillz Date: Wed, 31 Dec 2025 10:16:13 +0400 Subject: [PATCH] Fix RichTextLabel not updating Fix RichTextLabel not updating when changing scroll_active in the editor and in projects --- scene/gui/rich_text_label.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp index 3ad82136ee..0f0cb90fff 100644 --- a/scene/gui/rich_text_label.cpp +++ b/scene/gui/rich_text_label.cpp @@ -5182,6 +5182,8 @@ void RichTextLabel::set_scroll_active(bool p_active) { scroll_active = p_active; vscroll->set_drag_node_enabled(p_active); + vscroll->set_visible(p_active); + _apply_translation(); // without this, RichLabelText is not updated in the editor/game. queue_redraw(); }