Browse Source

Fix bad DELTA probe move (#21781)

Victor Oliveira 4 years ago
parent
commit
fb2bfe1cef
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/motion.cpp

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

@@ -426,7 +426,7 @@ void _internal_move_to_destination(const_feedRate_t fr_mm_s/*=0.0f*/
426 426
   #endif
427 427
 
428 428
   if (TERN0(IS_KINEMATIC, is_fast))
429
-    TERN(IS_KINEMATIC, NOOP, prepare_line_to_destination());
429
+    TERN(IS_KINEMATIC, prepare_fast_move_to_destination(), NOOP);
430 430
   else
431 431
     prepare_line_to_destination();
432 432
 

Loading…
Cancel
Save