if !HAS_MESH we still need to do some motion! (#8328)
* if !HAS_MESH we still need to do some motion! Thank You MagoKimbra ! * Ooops.... need #else and not #elif
This commit is contained in:
parent
004fc55eaf
commit
1c6e83c137
|
@ -658,9 +658,13 @@ float soft_endstop_min[XYZ] = { X_MIN_BED, Y_MIN_BED, Z_MIN_POS },
|
||||||
#endif
|
#endif
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
line_to_destination();
|
line_to_destination();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#else
|
||||||
|
line_to_destination();
|
||||||
#endif // HAS_MESH
|
#endif // HAS_MESH
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue