aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/safe_z_home.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/extras/safe_z_home.py')
-rw-r--r--klippy/extras/safe_z_home.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/klippy/extras/safe_z_home.py b/klippy/extras/safe_z_home.py
index 0489fab7..5c21bd3c 100644
--- a/klippy/extras/safe_z_home.py
+++ b/klippy/extras/safe_z_home.py
@@ -48,6 +48,8 @@ class SafeZHoming:
self._perform_z_hop(pos)
else:
self._perform_z_hop(pos)
+ if hasattr(toolhead.get_kinematics(), "note_z_not_homed"):
+ toolhead.get_kinematics().note_z_not_homed()
# Determine which axes we need to home
if not any([axis in params.keys() for axis in ['X', 'Y', 'Z']]):