Allow X, Y, Z manual move when cold. (#12209)
This commit is contained in:
parent
7243101135
commit
55dec02ca1
1 changed files with 1 additions and 1 deletions
|
@ -3226,7 +3226,7 @@ void lcd_quick_feedback(const bool clear_buttons) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#if ENABLED(PREVENT_COLD_EXTRUSION)
|
#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);
|
MENU_BACK(MSG_HOTEND_TOO_COLD);
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
|
|
Reference in a new issue