mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-18 04:07:57 -06:00
Fix bug in create bounds
CURA-10561
This commit is contained in:
parent
366004cdc1
commit
1425dd01d5
1 changed files with 1 additions and 1 deletions
|
@ -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"] = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue