From 4e860babbc86fb19382fff0ff1685e2939a05b1c Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 18 Jun 2016 01:40:49 -0700 Subject: [PATCH] Allow setting xy_travel_speed for delta leveling also --- Marlin/Marlin_main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 58113f2a21..28324d02e6 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -1762,7 +1762,7 @@ static void setup_for_endstop_move() { #if ENABLED(DELTA) - feedrate = XY_TRAVEL_SPEED; + feedrate = xy_travel_speed; destination[X_AXIS] = x; destination[Y_AXIS] = y; @@ -1854,7 +1854,6 @@ static void setup_for_endstop_move() { if (z_min_endstop) #endif { - // Move to the start position to initiate deployment destination[X_AXIS] = Z_PROBE_ALLEN_KEY_DEPLOY_1_X; destination[Y_AXIS] = Z_PROBE_ALLEN_KEY_DEPLOY_1_Y;