|
@@ -2057,6 +2057,7 @@ static void clean_up_after_endstop_or_probe_move() {
|
2057
|
2057
|
// If the nozzle is above the travel height then
|
2058
|
2058
|
// move down quickly before doing the slow probe
|
2059
|
2059
|
float z = LOGICAL_Z_POSITION(Z_CLEARANCE_BETWEEN_PROBES);
|
|
2060
|
+ if (zprobe_zoffset < 0) z -= zprobe_zoffset;
|
2060
|
2061
|
if (z < current_position[Z_AXIS])
|
2061
|
2062
|
do_blocking_move_to_z(z, MMM_TO_MMS(Z_PROBE_SPEED_FAST));
|
2062
|
2063
|
|