Fix sheet minimum width on the status screen
This commit is contained in:
parent
955c88cf68
commit
f071aec747
1 changed files with 1 additions and 1 deletions
|
@ -630,7 +630,7 @@ void lcdui_print_percent_done(void)
|
||||||
{
|
{
|
||||||
eeprom_read_block(sheet, EEPROM_Sheets_base->s[eeprom_read_byte(&(EEPROM_Sheets_base->active_sheet))].name, 7);
|
eeprom_read_block(sheet, EEPROM_Sheets_base->s[eeprom_read_byte(&(EEPROM_Sheets_base->active_sheet))].name, 7);
|
||||||
sheet[7] = '\0';
|
sheet[7] = '\0';
|
||||||
lcd_printf_P(PSTR("%s"),sheet);
|
lcd_printf_P(PSTR("%-7s"),sheet);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue