diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-27 11:03:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 11:03:13 +0100 |
commit | 899cd3442659f5208a08545b520ae6e6fe2552e7 (patch) | |
tree | c5ab709e12aa95ec25b570061da62f00fbc92876 /editor/plugins/theme_editor_plugin.cpp | |
parent | a4f999b7dc1314da752692a19231d0c1a8e70601 (diff) | |
parent | 3eb5e0ac509def467d53df7a729e76743e235e90 (diff) |
Merge pull request #57281 from Rubonnek/rename-subsequence
Diffstat (limited to 'editor/plugins/theme_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/theme_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/theme_editor_plugin.cpp b/editor/plugins/theme_editor_plugin.cpp index f95b2b40b5..611f81db33 100644 --- a/editor/plugins/theme_editor_plugin.cpp +++ b/editor/plugins/theme_editor_plugin.cpp @@ -2076,7 +2076,7 @@ void ThemeTypeDialog::_update_add_type_options(const String &p_filter) { Vector<StringName> unique_names; for (const StringName &E : names) { // Filter out undesired values. - if (!p_filter.is_subsequence_ofi(String(E))) { + if (!p_filter.is_subsequence_ofn(String(E))) { continue; } |