Browse Source

Fix Z height after tool change (#18951)

cbaugher 4 years ago
parent
commit
ad2d1b6e31
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      Marlin/src/module/tool_change.cpp

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

@@ -1132,7 +1132,8 @@ void tool_change(const uint8_t new_tool, bool no_move/*=false*/) {
1132 1132
             #if ENABLED(TOOLCHANGE_PARK)
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
-              do_blocking_move_to_xy(destination);
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 1137
             #endif
1137 1138
 
1138 1139
           #endif

Loading…
Cancel
Save