Browse Source

Merge branch 'MK3_fix_shorter_sheet_name_on_status_screen' into MK3_sheet_on_status_screen

Alex Voinea 4 years ago
parent
commit
8b0f0695a8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Firmware/ultralcd.cpp

+ 1 - 1
Firmware/ultralcd.cpp

@@ -634,7 +634,7 @@ void lcdui_print_percent_done(void)
 			char sheet[8];
 			eeprom_read_block(sheet, EEPROM_Sheets_base->s[sheetNR].name, 7);
 			sheet[7] = '\0';
-			lcd_printf_P(PSTR("%s"),sheet);
+			lcd_printf_P(PSTR("%-7s"),sheet);
 			return; //do not also print the percentage
 		}
 	}