chiark / gitweb /
The percent complete for the SD file statistic sits squint. Changed "lcd.Setcursor...
authorBlair Thompson <mail@justblair.co.uk>
Sat, 3 Mar 2012 16:47:27 +0000 (16:47 +0000)
committerBlair Thompson <mail@justblair.co.uk>
Sat, 3 Mar 2012 16:47:27 +0000 (16:47 +0000)
The percent complete now lines up with the temperatures and Z-axis position figures, nicer to read and nicer to look at IMHO.

Marlin/ultralcd.pde

index fa1a5566c9055bf98dba9e61aef91a23b04767ec..f1e84424ef4504fbc4671dc4504b28ac7caa0d42 100644 (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");
   }