🐛 E3V2 Mesh Viewer followup (#22850)

This commit is contained in:
Malderin 2021-09-29 04:20:03 +03:00 committed by Scott Lahteine
parent eacb660e4b
commit 5d3e75905d

View File

@ -124,18 +124,22 @@ static void event_handler(lv_obj_t *obj, lv_event_t event) {
else if (uiCfg.extruderIndex == 0) { else if (uiCfg.extruderIndex == 0) {
uiCfg.curTempType = TERN(HAS_HEATED_BED, 1, 0); uiCfg.curTempType = TERN(HAS_HEATED_BED, 1, 0);
} }
lv_obj_del(btn_pla);
lv_obj_del(btn_abs);
} }
else if (uiCfg.curTempType == 1) { else if (uiCfg.curTempType == 1) {
uiCfg.extruderIndex = 0; uiCfg.extruderIndex = 0;
uiCfg.curTempType = 0; uiCfg.curTempType = 0;
lv_obj_del(buttonAdd);
lv_obj_del(buttonDec);
} }
disp_temp_type(); disp_temp_type();
break; break;
case ID_P_STEP:
switch (uiCfg.stepHeat) {
case 1: uiCfg.stepHeat = 5; break;
case 5: uiCfg.stepHeat = 10; break;
case 10: uiCfg.stepHeat = 1; break;
default: break;
}
disp_step_heat();
break;
case ID_P_OFF: case ID_P_OFF:
if (uiCfg.curTempType == 0) { if (uiCfg.curTempType == 0) {
thermalManager.setTargetHotend(0, uiCfg.extruderIndex); thermalManager.setTargetHotend(0, uiCfg.extruderIndex);