🩹 Fix printer_busy, M73

Followup to "Misc. LCD cleanup"
This commit is contained in:
Scott Lahteine
2022-05-12 23:40:56 -05:00
parent cb31a99319
commit b934a4c612
4 changed files with 7 additions and 1 deletions

View File

@@ -1652,8 +1652,8 @@ void DWIN_Print_Aborted() {
}
// Progress Bar update
if (parser.seenval('P')) _percent_done = parser.byteval('P');
void DWIN_M73() {
if (parser.seenval('P')) _percent_done = parser.byteval('P');
if (parser.seenval('R')) {
_remain_time = parser.ulongval('R') * 60;
HMI_flag.remain_flag = true;