Fix M428 width DELTA & SCARA
This commit is contained in:
parent
0d793fb2be
commit
f499be084a
|
@ -6005,7 +6005,11 @@ inline void gcode_M428() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!err) {
|
if (!err) {
|
||||||
sync_plan_position();
|
#if ENABLED(DELTA) && ENABLED(SCARA)
|
||||||
|
sync_plan_position_delta();
|
||||||
|
#else
|
||||||
|
sync_plan_position();
|
||||||
|
#endif
|
||||||
report_current_position();
|
report_current_position();
|
||||||
LCD_MESSAGEPGM(MSG_HOME_OFFSETS_APPLIED);
|
LCD_MESSAGEPGM(MSG_HOME_OFFSETS_APPLIED);
|
||||||
#if HAS_BUZZER
|
#if HAS_BUZZER
|
||||||
|
|
Loading…
Reference in a new issue