Merge branch 'MK3_fix_shorter_sheet_name_on_status_screen' into MK3_sheet_on_status_screen
This commit is contained in:
commit
8b0f0695a8
|
|
@ -634,7 +634,7 @@ void lcdui_print_percent_done(void)
|
||||||
char sheet[8];
|
char sheet[8];
|
||||||
eeprom_read_block(sheet, EEPROM_Sheets_base->s[sheetNR].name, 7);
|
eeprom_read_block(sheet, EEPROM_Sheets_base->s[sheetNR].name, 7);
|
||||||
sheet[7] = '\0';
|
sheet[7] = '\0';
|
||||||
lcd_printf_P(PSTR("%s"),sheet);
|
lcd_printf_P(PSTR("%-7s"),sheet);
|
||||||
return; //do not also print the percentage
|
return; //do not also print the percentage
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue