Browse Source

Fix Z raise in filament load M701 (#21762)

Fixes #21750
Sebastiaan Dammann 4 years ago
parent
commit
b356b44849
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/M701_M702.cpp

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

97
   };
97
   };
98
 
98
 
99
   // Raise the Z axis (with max limit)
99
   // Raise the Z axis (with max limit)
100
-  const float park_raise = _MIN(0, park_point.z, (Z_MAX_POS) - current_position.z);
100
+  const float park_raise = _MIN(park_point.z, (Z_MAX_POS) - current_position.z);
101
   move_z_by(park_raise);
101
   move_z_by(park_raise);
102
 
102
 
103
   // Load filament
103
   // Load filament

Loading…
Cancel
Save