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.
master
Blair Thompson 13 years ago
parent f278e1c00f
commit 4879de08e8

@ -410,7 +410,7 @@ void MainMenu::showStatus()
uint8_t percent=card.percentDone(); uint8_t percent=card.percentDone();
if(oldpercent!=percent ||force_lcd_update) if(oldpercent!=percent ||force_lcd_update)
{ {
lcd.setCursor(7,2); lcd.setCursor(10,2);
lcd.print(itostr3((int)percent)); lcd.print(itostr3((int)percent));
lcdprintPGM("%SD"); lcdprintPGM("%SD");
} }

Loading…
Cancel
Save