summaryrefslogtreecommitdiff
path: root/editor/plugins
diff options
context:
space:
mode:
authorx2f <10355421+x2f@users.noreply.github.com>2019-01-09 00:23:46 -0500
committerGitHub <noreply@github.com>2019-01-09 00:23:46 -0500
commitb50fa06c6d18e24290aee23a74ee2eb3bdeb09ec (patch)
tree82a630efce3dc232d899dde94d28c7506e2c33c1 /editor/plugins
parente46f28e02dde08bb515fdd796ffcf114361e4877 (diff)
Fix for issue #24810 (find in files logic)
Match case check box was used for whole words as well as match case.
Diffstat (limited to 'editor/plugins')
-rw-r--r--editor/plugins/script_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp
index 9e3a512724..182738cf14 100644
--- a/editor/plugins/script_editor_plugin.cpp
+++ b/editor/plugins/script_editor_plugin.cpp
@@ -2800,7 +2800,7 @@ void ScriptEditor::_start_find_in_files(bool with_replace) {
f->set_search_text(find_in_files_dialog->get_search_text());
f->set_match_case(find_in_files_dialog->is_match_case());
- f->set_whole_words(find_in_files_dialog->is_match_case());
+ f->set_whole_words(find_in_files_dialog->is_whole_words());
f->set_folder(find_in_files_dialog->get_folder());
f->set_filter(find_in_files_dialog->get_filter());