diff --git a/source/shapes/group.cpp b/source/shapes/group.cpp index 7d634f2..ffa4b8a 100644 --- a/source/shapes/group.cpp +++ b/source/shapes/group.cpp @@ -130,7 +130,7 @@ void Group::updateBoundingBox() int i; for(i = 0; i < this->objectCount; i++) { - if (!this->objectList[i]->haveFiniteBounds()) + if (this->objectList[i]->haveFiniteBounds()) { BoundingBox objB = this->objectList[i]->getBounds(); this->bounds | objB;