mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-12 23:24:41 +00:00
Merge pull request #600 from Ragora/bugfix-asset-browser-tags
* BugFix: Correct tags in the asset browser not filtering correctly
This commit is contained in:
commit
6ff9383672
1 changed files with 1 additions and 1 deletions
|
|
@ -1802,7 +1802,7 @@ function matchesSearch(%assetName, %assetType)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if(%assetName.tags !$= %word)
|
if(strstr(strlwr(%assetName.tags), strlwr(%word)) != -1)
|
||||||
%matchTags = true;
|
%matchTags = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue