mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-24 07:04:01 -06:00
z_tilt: Don't default "points" parameter to "z_positions" parameter
It's rare to have all the Z stepper locations directly under the printable surface, so using z_positions for points is not a good default. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
260d12af6d
commit
94dc8167c9
2 changed files with 2 additions and 4 deletions
|
@ -18,8 +18,7 @@ class ZTilt:
|
|||
except:
|
||||
raise config.error("Unable to parse z_positions in %s" % (
|
||||
config.get_name()))
|
||||
self.probe_helper = probe.ProbePointsHelper(
|
||||
config, self, default_points=self.z_positions)
|
||||
self.probe_helper = probe.ProbePointsHelper(config, self)
|
||||
self.z_steppers = []
|
||||
# Register Z_TILT_ADJUST command
|
||||
self.gcode = self.printer.lookup_object('gcode')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue