Fix bug in create bounds

CURA-10561
This commit is contained in:
c.lamboo 2023-10-20 22:49:26 +02:00
parent 366004cdc1
commit 1425dd01d5

View file

@ -154,7 +154,7 @@ class MakerbotWriter(MeshWriter):
if bounds is None: if bounds is None:
bounds = node_bounds bounds = node_bounds
else: else:
bounds += node_bounds bounds = bounds + node_bounds
if bounds is not None: if bounds is not None:
meta["bounding_box"] = { meta["bounding_box"] = {