Update status_screen_DOGM.cpp

This commit is contained in:
Scott Lahteine 2019-10-24 13:39:32 -05:00 committed by GitHub
parent 5edd5d1e1f
commit 326d5b84e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -397,7 +397,7 @@ void MarlinUI::draw_status_screen() {
;
duration_t elapsed = print_job_timer.duration();
const uint8_t p = progress & 0xFF, ev = elapsed.value & 0xFF;
if (progress > 1 || p != lastProgress) {
if (p != lastProgress) {
lastProgress = p;
progress_bar_solid_width = u8g_uint_t((PROGRESS_BAR_WIDTH - 2) * progress / (PROGRESS_SCALE) * 0.01f);