Browse Source

Standardized max temp values

Everywhere in menu items temperatures are "defined value" subtracted by 15.
In one place is subtracted by 5
GMagician 6 years ago
parent
commit
719cd53e09
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/lcd/ultralcd.cpp

+ 1
- 1
Marlin/src/lcd/ultralcd.cpp View File

2052
       MENU_BACK(MSG_UBL_BUILD_MESH_MENU);
2052
       MENU_BACK(MSG_UBL_BUILD_MESH_MENU);
2053
       MENU_ITEM_EDIT(int3, MSG_UBL_CUSTOM_HOTEND_TEMP, &custom_hotend_temp, EXTRUDE_MINTEMP, (HEATER_0_MAXTEMP - 10));
2053
       MENU_ITEM_EDIT(int3, MSG_UBL_CUSTOM_HOTEND_TEMP, &custom_hotend_temp, EXTRUDE_MINTEMP, (HEATER_0_MAXTEMP - 10));
2054
       #if HAS_TEMP_BED
2054
       #if HAS_TEMP_BED
2055
-        MENU_ITEM_EDIT(int3, MSG_UBL_CUSTOM_BED_TEMP, &custom_bed_temp, BED_MINTEMP, (BED_MAXTEMP - 5));
2055
+        MENU_ITEM_EDIT(int3, MSG_UBL_CUSTOM_BED_TEMP, &custom_bed_temp, BED_MINTEMP, (BED_MAXTEMP - 15));
2056
       #endif
2056
       #endif
2057
       MENU_ITEM(function, MSG_UBL_BUILD_CUSTOM_MESH, _lcd_ubl_build_custom_mesh);
2057
       MENU_ITEM(function, MSG_UBL_BUILD_CUSTOM_MESH, _lcd_ubl_build_custom_mesh);
2058
       END_MENU();
2058
       END_MENU();

Loading…
Cancel
Save