Fixes mistake where GuiInspectorEntityGroup's onAdd doesn't explicitly return true, which can cause problems in some compilers.

This commit is contained in:
Areloch 2016-05-30 02:29:20 -05:00
parent 18184747e3
commit 74a2005d15

View file

@ -41,6 +41,8 @@ bool GuiInspectorEntityGroup::onAdd()
{
if (!Parent::onAdd())
return false;
return true;
}
//-----------------------------------------------------------------------------