mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-12 01:07:52 -06:00
Lower the minimum Y of the build volume a bit so we never exclude things positioned on the platform
This commit is contained in:
parent
4801233728
commit
0175eb7b59
1 changed files with 1 additions and 1 deletions
|
@ -121,4 +121,4 @@ class BuildVolume(SceneNode):
|
||||||
else:
|
else:
|
||||||
self._disallowed_area_mesh = None
|
self._disallowed_area_mesh = None
|
||||||
|
|
||||||
self._aabb = AxisAlignedBox(minimum = Vector(minW, minH, minD), maximum = Vector(maxW, maxH, maxD))
|
self._aabb = AxisAlignedBox(minimum = Vector(minW, minH - 1.0, minD), maximum = Vector(maxW, maxH, maxD))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue