mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 19:49:00 +08:00
SceneBounding box now correctly uses deepcopy
This commit is contained in:
parent
f8aa4cdade
commit
89424d5635
@ -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…
x
Reference in New Issue
Block a user