Browse Source

Tool-change Z move followup (#18963)

cbaugher 5 years ago
parent
commit
837dc4727d
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/tool_change.cpp

+ 1
- 1
Marlin/src/module/tool_change.cpp View File

@@ -1133,7 +1133,7 @@ void tool_change(const uint8_t new_tool, bool no_move/*=false*/) {
1133 1133
               if (toolchange_settings.enable_park) do_blocking_move_to_xy_z(destination, destination.z, MMM_TO_MMS(TOOLCHANGE_PARK_XY_FEEDRATE));
1134 1134
             #else
1135 1135
               do_blocking_move_to_xy(destination, planner.settings.max_feedrate_mm_s[X_AXIS]);
1136
-              do_blocking_move_to_z(destination, planner.settings.max_feedrate_mm_s[Z_AXIS]);
1136
+              do_blocking_move_to_z(destination.z, planner.settings.max_feedrate_mm_s[Z_AXIS]);
1137 1137
             #endif
1138 1138
 
1139 1139
           #endif

Loading…
Cancel
Save