Skip to content

Commit 81f50c2

Browse files
authored
Merge pull request MarlinFirmware#14 from ahalekelly/singlenozzle
Fix error with two extruders & one nozzle
2 parents 8042a44 + 1cfe901 commit 81f50c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/ui/src/draw_preHeat.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ static void event_handler(lv_obj_t * obj, lv_event_t event)
4343
thermalManager.start_watching_hotend(uiCfg.curSprayerChoose);
4444
}
4545
}
46-
#if EXTRUDERS >= 2
46+
#if !defined(SINGLENOZZLE) && EXTRUDERS >= 2
4747
else
4848
{
4949
if((int)thermalManager.temp_hotend[uiCfg.curSprayerChoose].target > (HEATER_1_MAXTEMP- (WATCH_TEMP_INCREASE + TEMP_HYSTERESIS + 1)))

0 commit comments

Comments
 (0)