summaryrefslogtreecommitdiff
path: root/editor/create_dialog.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-01-27 11:03:13 +0100
committerGitHub <noreply@github.com>2022-01-27 11:03:13 +0100
commit899cd3442659f5208a08545b520ae6e6fe2552e7 (patch)
treec5ab709e12aa95ec25b570061da62f00fbc92876 /editor/create_dialog.cpp
parenta4f999b7dc1314da752692a19231d0c1a8e70601 (diff)
parent3eb5e0ac509def467d53df7a729e76743e235e90 (diff)
Merge pull request #57281 from Rubonnek/rename-subsequence
Diffstat (limited to 'editor/create_dialog.cpp')
-rw-r--r--editor/create_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/create_dialog.cpp b/editor/create_dialog.cpp
index d0dfbc7c11..3d55f45dd6 100644
--- a/editor/create_dialog.cpp
+++ b/editor/create_dialog.cpp
@@ -178,7 +178,7 @@ void CreateDialog::_update_search() {
// Filter all candidate results.
Vector<String> candidates;
for (List<StringName>::Element *I = type_list.front(); I; I = I->next()) {
- if (empty_search || search_text.is_subsequence_ofi(I->get())) {
+ if (empty_search || search_text.is_subsequence_ofn(I->get())) {
candidates.push_back(I->get());
}
}