diff options
Diffstat (limited to 'klippy/homing.py')
-rw-r--r-- | klippy/homing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/homing.py b/klippy/homing.py index 66af8aca..cc808cc1 100644 --- a/klippy/homing.py +++ b/klippy/homing.py @@ -15,8 +15,8 @@ class Homing: self.toolhead = printer.lookup_object('toolhead') self.changed_axes = [] self.verify_retract = True - def set_no_verify_retract(self): - self.verify_retract = False + if self.printer.get_start_args().get("debuginput"): + self.verify_retract = False def set_axes(self, axes): self.changed_axes = axes def get_axes(self): |