|
@@ -7998,7 +7998,7 @@ void mesh_line_to_destination(float fr_mm_m, uint8_t x_splits = 0xff, uint8_t y_
|
7998
|
7998
|
|
7999
|
7999
|
inverse_kinematics(target);
|
8000
|
8000
|
|
8001
|
|
- #if ENABLED(AUTO_BED_LEVELING_FEATURE)
|
|
8001
|
+ #if ENABLED(DELTA) && ENABLED(AUTO_BED_LEVELING_FEATURE)
|
8002
|
8002
|
if (!bed_leveling_in_progress) adjust_delta(target);
|
8003
|
8003
|
#endif
|
8004
|
8004
|
|
|
@@ -8248,7 +8248,7 @@ void prepare_move_to_destination() {
|
8248
|
8248
|
|
8249
|
8249
|
#if ENABLED(DELTA) || ENABLED(SCARA)
|
8250
|
8250
|
inverse_kinematics(arc_target);
|
8251
|
|
- #if ENABLED(AUTO_BED_LEVELING_FEATURE)
|
|
8251
|
+ #if ENABLED(DELTA) && ENABLED(AUTO_BED_LEVELING_FEATURE)
|
8252
|
8252
|
adjust_delta(arc_target);
|
8253
|
8253
|
#endif
|
8254
|
8254
|
planner.buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], arc_target[E_AXIS], fr_mm_s, active_extruder);
|
|
@@ -8260,7 +8260,7 @@ void prepare_move_to_destination() {
|
8260
|
8260
|
// Ensure last segment arrives at target location.
|
8261
|
8261
|
#if ENABLED(DELTA) || ENABLED(SCARA)
|
8262
|
8262
|
inverse_kinematics(target);
|
8263
|
|
- #if ENABLED(AUTO_BED_LEVELING_FEATURE)
|
|
8263
|
+ #if ENABLED(DELTA) && ENABLED(AUTO_BED_LEVELING_FEATURE)
|
8264
|
8264
|
adjust_delta(target);
|
8265
|
8265
|
#endif
|
8266
|
8266
|
planner.buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], target[E_AXIS], fr_mm_s, active_extruder);
|