1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-24 20:43:32 +00:00

We need motion even with !HAS_MESH (#8330)

Thank You MagoKimbra !
This commit is contained in:
Roxy-3D 2017-11-08 09:58:18 -06:00 committed by GitHub
parent 77cef3bef2
commit 6ee4ba6932
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;