LCD SD Card items near top when not using wheel (#12926)
This commit is contained in:
committed by
Scott Lahteine
parent
e1f951813a
commit
75f2665f2e
@@ -31,10 +31,14 @@
|
||||
#include "menu.h"
|
||||
#include "../../module/temperature.h"
|
||||
|
||||
#if FAN_COUNT > 1
|
||||
#if FAN_COUNT > 1 || ENABLED(SINGLENOZZLE)
|
||||
#include "../../module/motion.h"
|
||||
#endif
|
||||
|
||||
#if ENABLED(SINGLENOZZLE)
|
||||
#include "../../module/tool_change.h"
|
||||
#endif
|
||||
|
||||
// Initialized by settings.load()
|
||||
int16_t MarlinUI::preheat_hotend_temp[2], MarlinUI::preheat_bed_temp[2];
|
||||
uint8_t MarlinUI::preheat_fan_speed[2];
|
||||
@@ -327,6 +331,10 @@ void menu_temperature() {
|
||||
#endif // HOTENDS > 2
|
||||
#endif // HOTENDS > 1
|
||||
|
||||
#if ENABLED(SINGLENOZZLE)
|
||||
MENU_MULTIPLIER_ITEM_EDIT(uint16_3, MSG_NOZZLE_STANDBY, &singlenozzle_temp[active_extruder ? 0 : 1], 0, HEATER_0_MAXTEMP - 15);
|
||||
#endif
|
||||
|
||||
//
|
||||
// Bed:
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user