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.
This commit is contained in:
Blair Thompson 2012-03-03 16:47:27 +00:00
parent f278e1c00f
commit 4879de08e8

View File

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