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,7 +410,7 @@ void MainMenu::showStatus()
410 410
   uint8_t percent=card.percentDone();
411 411
   if(oldpercent!=percent ||force_lcd_update)
412 412
   {
413
-     lcd.setCursor(7,2);
413
+     lcd.setCursor(10,2);
414 414
     lcd.print(itostr3((int)percent));
415 415
     lcdprintPGM("%SD");
416 416
   }

Loading…
Cancel
Save