SceneBounding box now correctly uses deepcopy

This commit is contained in:
Jaime van Kessel 2016-02-12 16:17:58 +01:00
parent f8aa4cdade
commit 89424d5635

View file

@ -268,7 +268,7 @@ class CuraApplication(QtApplication):
count += 1
if not scene_boundingbox:
scene_boundingbox = node.getBoundingBox()
scene_boundingbox = copy.deepcopy(node.getBoundingBox())
else:
scene_boundingbox += node.getBoundingBox()