diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-12-28 22:28:29 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-12-28 22:38:29 -0500 |
commit | 6138d18f4bf5bdb2eb2639f4f9da40a1d52121ad (patch) | |
tree | ce0e2722f03723703bb776d22a182d8803bd28e0 | |
parent | d028f42e99f21f9dac83f850fbf29f869597704d (diff) | |
download | kutter-6138d18f4bf5bdb2eb2639f4f9da40a1d52121ad.tar.gz kutter-6138d18f4bf5bdb2eb2639f4f9da40a1d52121ad.tar.xz kutter-6138d18f4bf5bdb2eb2639f4f9da40a1d52121ad.zip |
toolhead: Also call reset_print_time() on force_shutdown()
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | klippy/toolhead.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py index f4edd521..614ab4b1 100644 --- a/klippy/toolhead.py +++ b/klippy/toolhead.py @@ -298,3 +298,4 @@ class ToolHead: def force_shutdown(self): self.printer.mcu.force_shutdown() self.move_queue.reset() + self.reset_print_time() |