Merge pull request #3397 from leptun/MK3_reset_time_remaining_on_stop
Fix time remaining not reset on stop print
This commit is contained in:
commit
8a1e9ea38e
|
|
@ -6914,8 +6914,6 @@ Sigma_Exit:
|
||||||
#endif
|
#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;
|
snmm_filaments_used = 0;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
@ -10193,6 +10191,9 @@ void finishAndDisableSteppers()
|
||||||
// state for the next print.
|
// state for the next print.
|
||||||
la10c_reset();
|
la10c_reset();
|
||||||
#endif
|
#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
|
#ifdef FAST_PWM_FAN
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue