Allow X, Y, Z manual move when cold. (#12209)

This commit is contained in:
Roman Moravčík 2018-10-25 16:13:52 +02:00 committed by Scott Lahteine
parent 7243101135
commit 55dec02ca1

View File

@ -3226,7 +3226,7 @@ void lcd_quick_feedback(const bool clear_buttons) {
}
}
#if ENABLED(PREVENT_COLD_EXTRUSION)
if (thermalManager.tooColdToExtrude(eindex >= 0 ? eindex : active_extruder))
if (axis == E_AXIS && thermalManager.tooColdToExtrude(eindex >= 0 ? eindex : active_extruder))
MENU_BACK(MSG_HOTEND_TOO_COLD);
else
#endif