Fix M428 width DELTA & SCARA

This commit is contained in:
MagoKimbra 2016-06-03 23:23:23 +02:00
parent 0d793fb2be
commit f499be084a

View File

@ -6005,7 +6005,11 @@ inline void gcode_M428() {
}
if (!err) {
sync_plan_position();
#if ENABLED(DELTA) && ENABLED(SCARA)
sync_plan_position_delta();
#else
sync_plan_position();
#endif
report_current_position();
LCD_MESSAGEPGM(MSG_HOME_OFFSETS_APPLIED);
#if HAS_BUZZER