Browse Source

Merge pull request #9246 from GMagician/2.0.x-bed-temp-limit-fix

[2.0.x] Standardized max temp values
pull/1/head
Scott Lahteine 7 years ago
committed by GitHub
parent
commit
f2d09f27bb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/src/lcd/ultralcd.cpp

2
Marlin/src/lcd/ultralcd.cpp

@ -2052,7 +2052,7 @@ void kill_screen(const char* lcd_msg) {
MENU_BACK(MSG_UBL_BUILD_MESH_MENU);
MENU_ITEM_EDIT(int3, MSG_UBL_CUSTOM_HOTEND_TEMP, &custom_hotend_temp, EXTRUDE_MINTEMP, (HEATER_0_MAXTEMP - 10));
#if HAS_TEMP_BED
MENU_ITEM_EDIT(int3, MSG_UBL_CUSTOM_BED_TEMP, &custom_bed_temp, BED_MINTEMP, (BED_MAXTEMP - 5));
MENU_ITEM_EDIT(int3, MSG_UBL_CUSTOM_BED_TEMP, &custom_bed_temp, BED_MINTEMP, (BED_MAXTEMP - 15));
#endif
MENU_ITEM(function, MSG_UBL_BUILD_CUSTOM_MESH, _lcd_ubl_build_custom_mesh);
END_MENU();

Loading…
Cancel
Save