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
   #endif
426
   #endif
427
 
427
 
428
   if (TERN0(IS_KINEMATIC, is_fast))
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
   else
430
   else
431
     prepare_line_to_destination();
431
     prepare_line_to_destination();
432
 
432
 

Loading…
Cancel
Save