Add subsequence search to tools
Add it to the following searches: - Create node. - Scene tree. - Inspector properties. - Classes list in help. - Quick open.
This commit is contained in:
parent
a6c37d2b5d
commit
68868aabc6
5 changed files with 8 additions and 8 deletions
|
|
@ -2804,7 +2804,7 @@ void PropertyEditor::update_tree() {
|
|||
if (capitalize_paths)
|
||||
cat = cat.capitalize();
|
||||
|
||||
if (cat.findn(filter)==-1 && name.findn(filter)==-1)
|
||||
if (!filter.is_subsequence_ofi(cat) && !filter.is_subsequence_ofi(name))
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue