aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--klippy/toolhead.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py
index 2398d7ca..3cf1444c 100644
--- a/klippy/toolhead.py
+++ b/klippy/toolhead.py
@@ -332,7 +332,7 @@ class ToolHead:
if self.special_queuing_state:
self._update_drip_move_time(next_move_time)
self._update_move_time(next_move_time)
- self.last_kin_move_time = next_move_time
+ self.last_kin_move_time = max(self.last_kin_move_time, next_move_time)
def flush_step_generation(self):
# Transition from "Flushed"/"Priming"/main state to "Flushed" state
self.move_queue.flush()