Skip to content

Commit

Permalink
Merge pull request #3955 from MagoKimbra/RCBugFix
Browse files Browse the repository at this point in the history
Fix M428 width DELTA & SCARA
  • Loading branch information
thinkyhead committed Jun 3, 2016
2 parents 2403a1c + f499be0 commit 4e13cd3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6019,7 +6019,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
Expand Down

0 comments on commit 4e13cd3

Please sign in to comment.