mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +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
|
|
@ -1802,7 +1802,7 @@ function matchesSearch(%assetName, %assetType)
|
|||
}
|
||||
else
|
||||
{
|
||||
if(%assetName.tags !$= %word)
|
||||
if(strstr(strlwr(%assetName.tags), strlwr(%word)) != -1)
|
||||
%matchTags = true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue