Do not assert when a field editor cannot be created

This commit is contained in:
Magne Sjaastad 2015-08-13 11:47:05 +02:00
parent 8ad3f9b8c3
commit 82903afa25

View File

@ -265,7 +265,10 @@ void PdmUiDefaultObjectEditor::recursiveSetupFieldsAndGroups(const std::vector<P
// is included
//
// See cafPdmUiCoreColor3f and cafPdmUiCoreVec3d
assert(false);
// This assert will trigger for PdmChildArrayField and PdmChildField
// Consider to exclude assert or add editors for these types if the assert is reintroduced
//assert(false);
}
}
else