Rename String::is_subsequence_ofi to String::is_subsequence_ofn
This commit is contained in:
parent
fc09d783f4
commit
3eb5e0ac50
19 changed files with 22 additions and 22 deletions
|
|
@ -71,13 +71,13 @@ void GroupDialog::_load_nodes(Node *p_current) {
|
|||
TreeItem *node = nullptr;
|
||||
NodePath path = scene_tree->get_edited_scene_root()->get_path_to(p_current);
|
||||
if (keep && p_current->is_in_group(selected_group)) {
|
||||
if (remove_filter->get_text().is_subsequence_ofi(String(p_current->get_name()))) {
|
||||
if (remove_filter->get_text().is_subsequence_ofn(String(p_current->get_name()))) {
|
||||
node = nodes_to_remove->create_item(remove_node_root);
|
||||
keep = true;
|
||||
} else {
|
||||
keep = false;
|
||||
}
|
||||
} else if (keep && add_filter->get_text().is_subsequence_ofi(String(p_current->get_name()))) {
|
||||
} else if (keep && add_filter->get_text().is_subsequence_ofn(String(p_current->get_name()))) {
|
||||
node = nodes_to_add->create_item(add_node_root);
|
||||
keep = true;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue