Browse Source

UMW follow-up (#21791)

Vert 4 years ago
parent
commit
f4f41d01bf
No account linked to committer's email address
1 changed files with 3 additions and 2 deletions
  1. 3
    2
      Marlin/src/lcd/menu/menu_ubl.cpp

+ 3
- 2
Marlin/src/lcd/menu/menu_ubl.cpp View File

618
       sprintf_P(ubl_lcd_gcode, PSTR("M1004S%i"), ubl_storage_slot);
618
       sprintf_P(ubl_lcd_gcode, PSTR("M1004S%i"), ubl_storage_slot);
619
     #endif
619
     #endif
620
     queue.inject(ubl_lcd_gcode);
620
     queue.inject(ubl_lcd_gcode);
621
+    ui.return_to_status();
621
   }
622
   }
622
 
623
 
623
   void _menu_ubl_mesh_wizard() {
624
   void _menu_ubl_mesh_wizard() {
626
     BACK_ITEM(MSG_UBL_LEVEL_BED);
627
     BACK_ITEM(MSG_UBL_LEVEL_BED);
627
 
628
 
628
     #if HAS_HOTEND
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
     #endif
631
     #endif
631
 
632
 
632
     #if HAS_HEATED_BED
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
     #endif
635
     #endif
635
 
636
 
636
     EDIT_ITEM(int3, MSG_UBL_STORAGE_SLOT, &ubl_storage_slot, 0, total_slots);
637
     EDIT_ITEM(int3, MSG_UBL_STORAGE_SLOT, &ubl_storage_slot, 0, total_slots);

Loading…
Cancel
Save