mirror of
https://github.com/godotengine/godot.git
synced 2025-10-27 11:44:21 +00:00
Fix for issue #24810 (find in files logic)
Match case check box was used for whole words as well as match case.
This commit is contained in:
parent
e46f28e02d
commit
b50fa06c6d
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue