Merge pull request #11540 from sethalves/fix-hasCompoundShapeURL

fix mistaken logic-flip in recent PR
This commit is contained in:
Seth Alves 2017-10-06 13:03:18 -07:00 committed by GitHub
commit f6ff7b3888

View file

@ -497,7 +497,7 @@ bool ModelEntityItem::hasModel() const {
});
}
bool ModelEntityItem::hasCompoundShapeURL() const {
return _compoundShapeURL.get().isEmpty();
return !_compoundShapeURL.get().isEmpty();
}
QString ModelEntityItem::getModelURL() const {