From 5ae45d583fd76e9496ef76e4107c0fc0f4a24e62 Mon Sep 17 00:00:00 2001 From: Alex Voinea Date: Sun, 13 Feb 2022 08:52:27 +0100 Subject: [PATCH] Fix time remaining not reset on stop print --- Firmware/Marlin_main.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Firmware/Marlin_main.cpp b/Firmware/Marlin_main.cpp index 3663cbe12..b1d4ed75f 100755 --- a/Firmware/Marlin_main.cpp +++ b/Firmware/Marlin_main.cpp @@ -6911,8 +6911,6 @@ Sigma_Exit: #endif } } - //in the end of print set estimated time to end of print and extruders used during print to default values for next print - print_time_remaining_init(); snmm_filaments_used = 0; break; @@ -10188,6 +10186,9 @@ void finishAndDisableSteppers() // state for the next print. la10c_reset(); #endif + + //in the end of print set estimated time to end of print and extruders used during print to default values for next print + print_time_remaining_init(); } #ifdef FAST_PWM_FAN