Skip to content

Commit

Permalink
🩹 Fix "elapsed" text on DOGLCD (MarlinFirmware#24087)
Browse files Browse the repository at this point in the history
  • Loading branch information
GMagician authored and Omkar Dhekne committed Mar 25, 2024
1 parent 72bb617 commit e1593ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/lcd/dogm/status_screen_DOGM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ void MarlinUI::draw_status_screen() {
lcd_put_u8str(estimation_x_pos, EXTRAS_BASELINE, estimation_string);
}
else if (elapsed_string[0]) {
lcd_put_u8str_P(PROGRESS_BAR_X, EXTRAS_BASELINE, E_LBL);
lcd_put_u8str(PROGRESS_BAR_X, EXTRAS_BASELINE, F("E:"));
lcd_put_u8str(elapsed_x_pos, EXTRAS_BASELINE, elapsed_string);
}

Expand Down

0 comments on commit e1593ff

Please sign in to comment.