|
@@ -618,6 +618,7 @@ void _menu_ubl_tools() {
|
618
|
618
|
sprintf_P(ubl_lcd_gcode, PSTR("M1004S%i"), ubl_storage_slot);
|
619
|
619
|
#endif
|
620
|
620
|
queue.inject(ubl_lcd_gcode);
|
|
621
|
+ ui.return_to_status();
|
621
|
622
|
}
|
622
|
623
|
|
623
|
624
|
void _menu_ubl_mesh_wizard() {
|
|
@@ -626,11 +627,11 @@ void _menu_ubl_tools() {
|
626
|
627
|
BACK_ITEM(MSG_UBL_LEVEL_BED);
|
627
|
628
|
|
628
|
629
|
#if HAS_HOTEND
|
629
|
|
- EDIT_ITEM(int3, MSG_UBL_HOTEND_TEMP_CUSTOM, &custom_hotend_temp, EXTRUDE_MINTEMP, thermalManager.hotend_max_target(0));
|
|
630
|
+ EDIT_ITEM(int3, MSG_UBL_HOTEND_TEMP_CUSTOM, &custom_hotend_temp, HEATER_0_MINTEMP + 20, thermalManager.hotend_max_target(0));
|
630
|
631
|
#endif
|
631
|
632
|
|
632
|
633
|
#if HAS_HEATED_BED
|
633
|
|
- EDIT_ITEM(int3, MSG_UBL_BED_TEMP_CUSTOM, &custom_bed_temp, BED_MINTEMP, BED_MAX_TARGET);
|
|
634
|
+ EDIT_ITEM(int3, MSG_UBL_BED_TEMP_CUSTOM, &custom_bed_temp, BED_MINTEMP + 20, BED_MAX_TARGET);
|
634
|
635
|
#endif
|
635
|
636
|
|
636
|
637
|
EDIT_ITEM(int3, MSG_UBL_STORAGE_SLOT, &ubl_storage_slot, 0, total_slots);
|