ExtUI Pause/Stop on all Pause/Stop (#15188)

This commit is contained in:
InsanityAutomation
2019-09-08 02:47:07 -04:00
committed by Scott Lahteine
parent 1c3a1ab2c6
commit 0693767efa
2 changed files with 6 additions and 10 deletions

View File

@ -39,6 +39,9 @@ bool Stopwatch::stop() {
#endif
if (isRunning() || isPaused()) {
#if ENABLED(EXTENSIBLE_UI)
ExtUI::onPrintTimerStopped();
#endif
state = STOPPED;
stopTimestamp = millis();
return true;
@ -52,6 +55,9 @@ bool Stopwatch::pause() {
#endif
if (isRunning()) {
#if ENABLED(EXTENSIBLE_UI)
ExtUI::onPrintTimerPaused();
#endif
state = PAUSED;
stopTimestamp = millis();
return true;