Fix getProgress_seconds_elapsed to return seconds

This commit is contained in:
Scott Lahteine 2018-10-24 18:02:30 -05:00
parent 5d487ef40e
commit 9613f00877

View file

@ -445,7 +445,7 @@ namespace UI {
}
uint32_t getProgress_seconds_elapsed() {
return IFPC(print_job_timer.duration(), 0);
return IFPC(print_job_timer.duration() / 1000UL, 0);
}
#if ENABLED(PRINTCOUNTER)