diff options
author | Keyan Mobli <kmobs@kmobli.com> | 2022-12-19 10:14:45 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-19 11:14:45 -0500 |
commit | 8621ebbed20e726acaad3922845cf141cd9e3d31 (patch) | |
tree | f23cb59db1e5f3ab766286908e26ab4d7221c399 /klippy/extras/bed_mesh.py | |
parent | 4af87865875755b421873e7e4e43ece958ab00ee (diff) | |
download | kutter-8621ebbed20e726acaad3922845cf141cd9e3d31.tar.gz kutter-8621ebbed20e726acaad3922845cf141cd9e3d31.tar.xz kutter-8621ebbed20e726acaad3922845cf141cd9e3d31.zip |
bed_mesh: Allow bedmeshing at 1mm spaced intervals (#5918)
Signed-off-by: Keyan Mobli <keyan@kmobli.com>
Diffstat (limited to 'klippy/extras/bed_mesh.py')
-rw-r--r-- | klippy/extras/bed_mesh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/bed_mesh.py b/klippy/extras/bed_mesh.py index 0618c970..19e89e60 100644 --- a/klippy/extras/bed_mesh.py +++ b/klippy/extras/bed_mesh.py @@ -315,7 +315,7 @@ class BedMeshCalibrate: # floor distances down to next hundredth x_dist = math.floor(x_dist * 100) / 100 y_dist = math.floor(y_dist * 100) / 100 - if x_dist <= 1. or y_dist <= 1.: + if x_dist < 1. or y_dist < 1.: raise error("bed_mesh: min/max points too close together") if self.radius is not None: |