From 4879de08e888a2bbdb52bbf42e453e67b488d2e4 Mon Sep 17 00:00:00 2001
From: Blair Thompson <mail@justblair.co.uk>
Date: Sat, 3 Mar 2012 16:47:27 +0000
Subject: [PATCH] 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.
---
 Marlin/ultralcd.pde | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Marlin/ultralcd.pde b/Marlin/ultralcd.pde
index fa1a5566c9..f1e84424ef 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");
   }
-- 
GitLab