Browse Source

Watch bed temp also for Control menu item

Scott Lahteine 8 years ago
parent
commit
850259bb25
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/ultralcd.cpp

+ 1
- 1
Marlin/ultralcd.cpp View File

@@ -1659,7 +1659,7 @@ void kill_screen(const char* lcd_msg) {
1659 1659
     // Bed:
1660 1660
     //
1661 1661
     #if TEMP_SENSOR_BED != 0
1662
-      MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_BED, &thermalManager.target_temperature_bed, 0, BED_MAXTEMP - 15);
1662
+      MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_BED, &thermalManager.target_temperature_bed, 0, BED_MAXTEMP - 15, watch_temp_callback_bed);
1663 1663
     #endif
1664 1664
 
1665 1665
     //

Loading…
Cancel
Save