[2.0] Fix for FW retract (#9878)

This commit is contained in:
Studiodyne
2018-03-01 22:15:40 +01:00
committed by Scott Lahteine
parent 461c8ef834
commit 23a576faf7
2 changed files with 2 additions and 7 deletions

View File

@ -1304,12 +1304,6 @@ void homeaxis(const AxisEnum axis) {
if (axis == Z_AXIS && STOW_PROBE()) return;
#endif
// Clear retracted status if homing the Z axis
#if ENABLED(FWRETRACT)
if (axis == Z_AXIS)
for (uint8_t i = 0; i < EXTRUDERS; i++) fwretract.retracted[i] = false;
#endif
#if ENABLED(DEBUG_LEVELING_FEATURE)
if (DEBUGGING(LEVELING)) {
SERIAL_ECHOPAIR("<<< homeaxis(", axis_codes[axis]);