Fix A10M/A20M mixer display
Co-Authored-By: 3Dangel <3dangel@users.noreply.github.com>
This commit is contained in:
parent
cc4d3a215e
commit
ade76e53de
@ -122,12 +122,10 @@ static uint8_t v_index;
|
|||||||
|
|
||||||
#if DUAL_MIXING_EXTRUDER
|
#if DUAL_MIXING_EXTRUDER
|
||||||
void _lcd_draw_mix(const uint8_t y) {
|
void _lcd_draw_mix(const uint8_t y) {
|
||||||
char tmp[10]; // "100%_100%"
|
char tmp[20]; // "100%_100%"
|
||||||
SETCURSOR(2, y);
|
|
||||||
lcd_put_u8str_P(GET_TEXT(MSG_MIX));
|
|
||||||
SETCURSOR(LCD_WIDTH - 9, y);
|
|
||||||
sprintf_P(tmp, PSTR("%3d%% %3d%%"), int(mixer.mix[0]), int(mixer.mix[1]));
|
sprintf_P(tmp, PSTR("%3d%% %3d%%"), int(mixer.mix[0]), int(mixer.mix[1]));
|
||||||
lcd_put_u8str(tmp);
|
SETCURSOR(2, y); lcd_put_u8str_P(GET_TEXT(MSG_MIX));
|
||||||
|
SETCURSOR_RJ(9, y); lcd_put_u8str(tmp);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user