Skip to content

Commit 2817b34

Browse files
committed
bed_mesh: reduce split_z_delta minval
This allows for visible improvements in surface quality.
1 parent 7dd901e commit 2817b34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

klippy/extras/bed_mesh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1294,7 +1294,7 @@ def _apply_offsets(self, point, offsets):
12941294
class MoveSplitter:
12951295
def __init__(self, config, gcode):
12961296
self.split_delta_z = config.getfloat(
1297-
'split_delta_z', .025, minval=0.01)
1297+
'split_delta_z', .025, minval=0.001)
12981298
self.move_check_distance = config.getfloat(
12991299
'move_check_distance', 5., minval=3.)
13001300
self.z_mesh = None

0 commit comments

Comments
 (0)