Always allow some amount of negative z for baby stepping
This commit is contained in:
parent
bbef086f28
commit
5b371273d0
1 changed files with 4 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue