diff options
author | kobewi <kobewi4e@gmail.com> | 2024-03-30 09:37:00 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-03-31 14:30:33 +0200 |
commit | 5a8066bd50a2323160f5d8ab09de1a2168123597 (patch) | |
tree | 3530f7284591ed9fc1f9523608b4ef71a9945d0a /editor/editor_help.cpp | |
parent | 29b3d9e9e538f0aa8effc8ad8bf19a2915292a89 (diff) | |
download | redot-engine-5a8066bd50a2323160f5d8ab09de1a2168123597.tar.gz |
Fix scroll to description
Diffstat (limited to 'editor/editor_help.cpp')
-rw-r--r-- | editor/editor_help.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 022cf82426..8fcce09b2f 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -2306,7 +2306,8 @@ void EditorHelp::_help_callback(const String &p_topic) { } if (class_desc->is_ready()) { - callable_mp(class_desc, &RichTextLabel::scroll_to_paragraph).call_deferred(line); + // call_deferred() is not enough. + class_desc->connect("draw", callable_mp(class_desc, &RichTextLabel::scroll_to_paragraph).bind(line), CONNECT_ONE_SHOT | CONNECT_DEFERRED); } else { scroll_to = line; } |