Browse Source

Merge pull request #2107 from thinkyhead/fix_issue_2106

Have G92 set the nozzle position on Delta and SCARA
pull/1/head
Scott Lahteine 9 years ago
parent
commit
7ff18f6657
  1. 8
      Marlin/Marlin_main.cpp

8
Marlin/Marlin_main.cpp

@ -2827,7 +2827,13 @@ inline void gcode_G92() {
didXYZ = true;
}
}
if (didXYZ) sync_plan_position();
if (didXYZ) {
#if defined(DELTA) || defined(SCARA)
sync_plan_position_delta();
#else
sync_plan_position();
#endif
}
}
#ifdef ULTIPANEL

Loading…
Cancel
Save