Browse Source

🩹 Fix "elapsed" text on DOGLCD (#24087)

Giuliano Zaro 3 years ago
parent
commit
a0a963fe1d
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/lcd/dogm/status_screen_DOGM.cpp

+ 1
- 1
Marlin/src/lcd/dogm/status_screen_DOGM.cpp View File

791
           lcd_put_u8str(estimation_x_pos, EXTRAS_BASELINE, estimation_string);
791
           lcd_put_u8str(estimation_x_pos, EXTRAS_BASELINE, estimation_string);
792
         }
792
         }
793
         else if (elapsed_string[0]) {
793
         else if (elapsed_string[0]) {
794
-          lcd_put_u8str_P(PROGRESS_BAR_X, EXTRAS_BASELINE, E_LBL);
794
+          lcd_put_u8str(PROGRESS_BAR_X, EXTRAS_BASELINE, F("E:"));
795
           lcd_put_u8str(elapsed_x_pos, EXTRAS_BASELINE, elapsed_string);
795
           lcd_put_u8str(elapsed_x_pos, EXTRAS_BASELINE, elapsed_string);
796
         }
796
         }
797
 
797
 

Loading…
Cancel
Save