|
@@ -485,11 +485,10 @@ void resume_print(const float &load_length/*=0*/, const float &purge_length/*=AD
|
485
|
485
|
// If retracted before goto pause
|
486
|
486
|
if (fwretract.retracted[active_extruder])
|
487
|
487
|
do_pause_e_move(-fwretract.retract_length, fwretract.retract_feedrate_mm_s);
|
488
|
|
- #else
|
489
|
|
- // If resume_position is negative
|
490
|
|
- if (resume_position[E_AXIS] < 0) do_pause_e_move(resume_position[E_AXIS], PAUSE_PARK_RETRACT_FEEDRATE);
|
491
|
488
|
#endif
|
492
|
|
-
|
|
489
|
+ // If resume_position is negative
|
|
490
|
+ if (resume_position[E_AXIS] < 0) do_pause_e_move(resume_position[E_AXIS], PAUSE_PARK_RETRACT_FEEDRATE);
|
|
491
|
+
|
493
|
492
|
// Move XY to starting position, then Z
|
494
|
493
|
do_blocking_move_to_xy(resume_position[X_AXIS], resume_position[Y_AXIS], NOZZLE_PARK_XY_FEEDRATE);
|
495
|
494
|
|