Fix the wait loop in M0 / M1

This commit is contained in:
Scott Lahteine 2020-02-25 12:20:40 -06:00
parent 6bfae5de6f
commit 454cbcce51

View file

@ -102,7 +102,7 @@ void GcodeSuite::M0_M1() {
#endif
if (ms > 0) ms += millis(); // wait until this time for a click
while (wait_for_user || (ms > 0 && PENDING(millis(), ms))) idle();
while (wait_for_user && (ms == 0 || PENDING(millis(), ms))) idle();
#if HAS_LEDS_OFF_FLAG
printerEventLEDs.onResumeAfterWait();