mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Fix scroll to description
This commit is contained in:
parent
29b3d9e9e5
commit
5a8066bd50
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user