Merge branch 'MK3_fix_shorter_sheet_name_on_status_screen' into MK3_sheet_on_status_screen

This commit is contained in:
Alex Voinea 2020-01-08 15:31:33 +02:00
commit 8b0f0695a8
No known key found for this signature in database
GPG Key ID: F5034E7CFCF2F973

View File

@ -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
}
}