Merge pull request #9202 from benlye/m73-bugfix

[2.0.x] Fix progress bar duration when time is exactly 86400s
This commit is contained in:
Scott Lahteine 2018-01-16 21:14:58 -06:00 committed by GitHub
commit c7bad74d8f
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -614,7 +614,7 @@ static void lcd_implementation_status_screen() {
char buffer[10];
duration_t elapsed = print_job_timer.duration();
bool has_days = (elapsed.value > 60*60*24L);
bool has_days = (elapsed.value >= 60*60*24L);
uint8_t len = elapsed.toDigital(buffer, has_days);
u8g.setPrintPos(SD_DURATION_X, 48);
lcd_print(buffer);