Always allow some amount of negative z for baby stepping

This commit is contained in:
Lars Brubaker 2019-03-13 17:09:36 -07:00
parent bbef086f28
commit 5b371273d0

View file

@ -93,6 +93,10 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io
// set to a big value to make sure we can get to any leveling position described (below the bed)
aabb.MinXYZ.Z = -100;
}
else // leave a little bit of room for baby stepping
{
aabb.MinXYZ.Z = -3;
}
// find out if the printer knows some of its limits
var homingPosition = printer.Connection.HomingPosition;