diff options
author | Stephen Hurd <deuce@synchro.net> | 2021-12-30 18:56:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-30 18:56:24 -0500 |
commit | f8afe49a2f93b25527ed6515d32f4f34490f5bd2 (patch) | |
tree | 821c1a849604640040c3dad5d36470c98dddb751 | |
parent | 309b8e030f68329d04573042ffc53a2745ac088b (diff) | |
download | kutter-f8afe49a2f93b25527ed6515d32f4f34490f5bd2.tar.gz kutter-f8afe49a2f93b25527ed6515d32f4f34490f5bd2.tar.xz kutter-f8afe49a2f93b25527ed6515d32f4f34490f5bd2.zip |
toolhead: Fix toolhead stop on SET_VELOCITY_LIMIT (#5053)
This fixes issue #5050
Signed-off-by: Stephen Hurd <deuce@synchro.net>
-rw-r--r-- | klippy/toolhead.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py index db2d47f4..b7285420 100644 --- a/klippy/toolhead.py +++ b/klippy/toolhead.py @@ -552,7 +552,6 @@ class ToolHead: self.wait_moves() cmd_SET_VELOCITY_LIMIT_help = "Set printer velocity limits" def cmd_SET_VELOCITY_LIMIT(self, gcmd): - print_time = self.get_last_move_time() max_velocity = gcmd.get_float('VELOCITY', None, above=0.) max_accel = gcmd.get_float('ACCEL', None, above=0.) square_corner_velocity = gcmd.get_float( |