diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2021-10-01 12:36:37 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2021-10-01 12:36:37 -0300 |
commit | 4a8b5b92c3dfb252646dc642219e99bcd4cc3204 (patch) | |
tree | 8dd22d85b833903124042d80cadfed74dc500bdf | |
parent | 928c002f223b67bd6fd1c55d65e37a6d5c4e3a94 (diff) |
Fix match counter in help pages not updating
-rw-r--r-- | editor/editor_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index b17f105507..c049db8ef6 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -1922,7 +1922,7 @@ void FindBar::_update_results_count() { return; } - String full_text = rich_text_label->get_text(); + String full_text = rich_text_label->get_parsed_text(); int from_pos = 0; |