From 6ee4ba6932d40bcf3ce7af12f6e96f6c3ce7bcaa Mon Sep 17 00:00:00 2001 From: Roxy-3D Date: Wed, 8 Nov 2017 09:58:18 -0600 Subject: [PATCH] We need motion even with !HAS_MESH (#8330) Thank You MagoKimbra ! --- Marlin/Marlin_main.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 6606a57a7..4ee02650b 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -12866,9 +12866,13 @@ void set_current_from_steppers_for_axis(const AxisEnum axis) { #endif return true; } - else + else { line_to_destination(); + return false; + } #endif + #else + line_to_destination(); #endif // HAS_MESH return false;