Skip to content

Commit 3c692be

Browse files
arthurswLCh-77
authored andcommitted
🐛 Fix Polargraph G92 command (MarlinFirmware#24223)
1 parent 52238a8 commit 3c692be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/gcode/geometry/G92.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ void GcodeSuite::G92() {
9393
v = TERN0(HAS_EXTRUDERS, i == E_AXIS) ? l : LOGICAL_TO_NATIVE(l, i), // Axis position in NATIVE space (applying the existing offset)
9494
d = v - current_position[i]; // How much is the current axis position altered by?
9595
if (!NEAR_ZERO(d)) {
96-
#if HAS_POSITION_SHIFT && !IS_SCARA // When using workspaces...
96+
#if HAS_POSITION_SHIFT && NONE(IS_SCARA, POLARGRAPH) // When using workspaces...
9797
if (TERN1(HAS_EXTRUDERS, i != E_AXIS)) {
9898
position_shift[i] += d; // ...most axes offset the workspace...
9999
update_workspace_offset((AxisEnum)i);

0 commit comments

Comments
 (0)