mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-07 14:04:03 -06:00
SceneBounding box now correctly uses deepcopy
This commit is contained in:
parent
f8aa4cdade
commit
89424d5635
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue