Browse Source

CURA-4425 fix multiple objects in snapshot; the AxisAlignedBox is supposed to be read-only

Jack Ha 7 years ago
parent
commit
b4eb2e173c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cura/Snapshot.py

+ 1 - 1
cura/Snapshot.py

@@ -30,7 +30,7 @@ class Snapshot:
                 if bbox is None:
                     bbox = node.getBoundingBox()
                 else:
-                    bbox += node.getBoundingBox()
+                    bbox = bbox + node.getBoundingBox()
         if bbox is None:
             bbox = AxisAlignedBox()
         look_at = bbox.center