Browse Source

Fix M125 unretract length (#17623)

Ondřej Nový 5 years ago
parent
commit
abd42e5dea
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/feature/pause/M125.cpp

+ 1
- 1
Marlin/src/gcode/feature/pause/M125.cpp View File

@@ -94,7 +94,7 @@ void GcodeSuite::M125() {
94 94
     #endif
95 95
     if (!sd_printing || show_lcd) {
96 96
       wait_for_confirmation(false, 0);
97
-      resume_print(0, 0, PAUSE_PARK_RETRACT_LENGTH, 0);
97
+      resume_print(0, 0, -retract, 0);
98 98
     }
99 99
   }
100 100
 }

Loading…
Cancel
Save