Fix Editor crash after a component is selected.

Fix #2384
This commit is contained in:
Yao Wei Tjong 姚伟忠 2019-05-19 15:48:25 +08:00
parent 8b644c22ce
commit c8469ba8c3
No known key found for this signature in database
GPG Key ID: 8C8F45FBA88EEDC6

View File

@ -1200,7 +1200,8 @@ ResourcePicker@ GetResourcePicker(StringHash resourceType)
{
for (uint i = 0; i < resourcePickers.length; ++i)
{
if (resourcePickers[i].type == resourceType)
// TODO: refactor to use dictionary instead
if (resourceType == resourcePickers[i].type)
return resourcePickers[i];
}
return null;