From 364faf497bc0db92ee280acbbaa6fcdd2982d89f Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Tue, 25 Sep 2018 15:44:45 -0400 Subject: [PATCH] toolhead: Update look-ahead flush comment Signed-off-by: Kevin O'Connor --- klippy/toolhead.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/klippy/toolhead.py b/klippy/toolhead.py index 96210152..c10c29e4 100644 --- a/klippy/toolhead.py +++ b/klippy/toolhead.py @@ -187,9 +187,7 @@ class MoveQueue: move.calc_junction(self.queue[-2]) self.junction_flush -= move.min_move_t if self.junction_flush <= 0.: - # There are enough queued moves to return to zero velocity - # from the first move's maximum possible velocity, so at - # least one move can be flushed. + # Enough moves have been queued to reach the target flush time. self.flush(lazy=True) STALL_TIME = 0.100