diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-26 23:28:42 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-26 23:28:42 +0200 |
commit | a041772ecf1406586c62fc5b4608fb556acbbb84 (patch) | |
tree | 6e14a8c00309d13ad4d58ea66b76e171c4671c76 /editor/editor_help.cpp | |
parent | 2e825c7d9c6ebcccdad2508b3e4526f7726e2bee (diff) | |
parent | edb3d9994287df3f91a166d3a415c113dd84a3b5 (diff) | |
download | redot-engine-a041772ecf1406586c62fc5b4608fb556acbbb84.tar.gz |
Merge pull request #93940 from Mickeon/deprecate_RichTextLabel_is_ready
Add RichTextLabel `is_finished()`, deprecate `is_ready()`
Diffstat (limited to 'editor/editor_help.cpp')
-rw-r--r-- | editor/editor_help.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 683e4e5cda..9b0c05d910 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -288,7 +288,7 @@ void EditorHelp::_class_desc_select(const String &p_select) { // Case order is important here to correctly handle edge cases like Variant.Type in @GlobalScope. if (table->has(link)) { // Found in the current page. - if (class_desc->is_ready()) { + if (class_desc->is_finished()) { emit_signal(SNAME("request_save_history")); class_desc->scroll_to_paragraph((*table)[link]); } else { @@ -2338,7 +2338,7 @@ void EditorHelp::_help_callback(const String &p_topic) { } } - if (class_desc->is_ready()) { + if (class_desc->is_finished()) { // call_deferred() is not enough. if (class_desc->is_connected(SceneStringName(draw), callable_mp(class_desc, &RichTextLabel::scroll_to_paragraph))) { class_desc->disconnect(SceneStringName(draw), callable_mp(class_desc, &RichTextLabel::scroll_to_paragraph)); @@ -3040,7 +3040,7 @@ Vector<Pair<String, int>> EditorHelp::get_sections() { void EditorHelp::scroll_to_section(int p_section_index) { _wait_for_thread(); int line = section_line[p_section_index].second; - if (class_desc->is_ready()) { + if (class_desc->is_finished()) { class_desc->scroll_to_paragraph(line); } else { scroll_to = line; |