From: Blair Thompson Date: Sat, 3 Mar 2012 16:47:27 +0000 (+0000) Subject: The percent complete for the SD file statistic sits squint. Changed "lcd.Setcursor... X-Git-Tag: iwj-success-2012-07-29~76^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=4879de08e888a2bbdb52bbf42e453e67b488d2e4;p=marlin.git 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. --- diff --git a/Marlin/ultralcd.pde b/Marlin/ultralcd.pde index fa1a556..f1e8442 100644 --- a/Marlin/ultralcd.pde +++ b/Marlin/ultralcd.pde @@ -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"); }