Have G92 set the nozzle position on Delta and SCARA
This commit is contained in:
parent
c5feb9c6a1
commit
3feaef6526
@ -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…
Reference in New Issue
Block a user