Scott Lahteine
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Marlin/src/lcd/dogm/status_screen_DOGM.cpp
|
|
@ -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); |
|
|
|