🚸 Align MKS UI heated bed status with HAS_MULTI_HOTEND (#23718)

This commit is contained in:
ellensp 2022-02-12 08:39:34 +13:00 committed by Scott Lahteine
parent cc1a48ad2d
commit 3abf4de4ae

View File

@ -196,7 +196,7 @@ void lv_draw_ready_print() {
buttonExt2 = lv_big_button_create(scr, "F:/bmp_ext2_state.bin", " ", 180, ICON_POS_Y, event_handler, ID_INFO_EXT);
#endif
#if HAS_HEATED_BED
buttonBedstate = lv_big_button_create(scr, "F:/bmp_bed_state.bin", " ", TERN(HAS_MULTI_HOTEND, 271, 210), ICON_POS_Y, event_handler, ID_INFO_BED);
buttonBedstate = lv_big_button_create(scr, "F:/bmp_bed_state.bin", " ", TERN(HAS_MULTI_HOTEND, 340, 210), ICON_POS_Y, event_handler, ID_INFO_BED);
#endif
TERN_(HAS_HOTEND, labelExt1 = lv_label_create_empty(scr));