mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07: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
|
count += 1
|
||||||
if not scene_boundingbox:
|
if not scene_boundingbox:
|
||||||
scene_boundingbox = node.getBoundingBox()
|
scene_boundingbox = copy.deepcopy(node.getBoundingBox())
|
||||||
else:
|
else:
|
||||||
scene_boundingbox += node.getBoundingBox()
|
scene_boundingbox += node.getBoundingBox()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue