mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
* [AssetBrowser] BugFix: Correct a logic error in the filtering of the asset browser causing tags queries to display all assets.
This commit is contained in:
parent
8256aca65e
commit
1676d102f3
|
|
@ -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