Browse Source

The percent complete for the SD file statistic sits squint. Changed "lcd.Setcursor (7,2);" to "lcd.Setcursor (10,2);".

The percent complete now lines up with the temperatures and Z-axis position figures, nicer to read and nicer to look at IMHO.
Blair Thompson 13 years ago
parent
commit
4879de08e8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/ultralcd.pde

+ 1
- 1
Marlin/ultralcd.pde View File

410
   uint8_t percent=card.percentDone();
410
   uint8_t percent=card.percentDone();
411
   if(oldpercent!=percent ||force_lcd_update)
411
   if(oldpercent!=percent ||force_lcd_update)
412
   {
412
   {
413
-     lcd.setCursor(7,2);
413
+     lcd.setCursor(10,2);
414
     lcd.print(itostr3((int)percent));
414
     lcd.print(itostr3((int)percent));
415
     lcdprintPGM("%SD");
415
     lcdprintPGM("%SD");
416
   }
416
   }

Loading…
Cancel
Save