summaryrefslogtreecommitdiffstats
path: root/editor/code_editor.cpp
diff options
context:
space:
mode:
authorkit <kitbdev@gmail.com>2024-06-11 15:56:38 -0400
committerkit <kitbdev@gmail.com>2024-06-11 15:56:38 -0400
commite3195bd15b0a17e238d802374fc5deb967cbf726 (patch)
tree258a235d5ddd15a1d3defe6e9f35558ca3ab45fc /editor/code_editor.cpp
parent292e50e17e3f6e2509d3178a00204f964a907460 (diff)
downloadredot-engine-e3195bd15b0a17e238d802374fc5deb967cbf726.tar.gz
Fix find highlight when switching scripts
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r--editor/code_editor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp
index 0e272429a3..c80dc9df3d 100644
--- a/editor/code_editor.cpp
+++ b/editor/code_editor.cpp
@@ -653,6 +653,7 @@ void FindReplaceBar::set_text_edit(CodeTextEditor *p_text_editor) {
}
if (base_text_editor) {
+ text_editor->set_search_text(String());
base_text_editor->remove_find_replace_bar();
base_text_editor = nullptr;
text_editor->disconnect("text_changed", callable_mp(this, &FindReplaceBar::_editor_text_changed));
@@ -670,8 +671,7 @@ void FindReplaceBar::set_text_edit(CodeTextEditor *p_text_editor) {
text_editor = base_text_editor->get_text_editor();
text_editor->connect("text_changed", callable_mp(this, &FindReplaceBar::_editor_text_changed));
- _update_results_count();
- _update_matches_display();
+ _editor_text_changed();
}
void FindReplaceBar::_bind_methods() {