From af59056c0904dfc95c870b905ada0ebb6dc9b05e Mon Sep 17 00:00:00 2001
From: Arthur Masson <arthur.sw@gmail.com>
Date: Sat, 21 May 2022 21:45:30 +0200
Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20Polargraph=20G92=20command?=
 =?UTF-8?q?=20(#24223)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 Marlin/src/gcode/geometry/G92.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Marlin/src/gcode/geometry/G92.cpp b/Marlin/src/gcode/geometry/G92.cpp
index 6e14cc4df91..58ed26a15aa 100644
--- a/Marlin/src/gcode/geometry/G92.cpp
+++ b/Marlin/src/gcode/geometry/G92.cpp
@@ -93,7 +93,7 @@ void GcodeSuite::G92() {
                       v = TERN0(HAS_EXTRUDERS, i == E_AXIS) ? l : LOGICAL_TO_NATIVE(l, i),  // Axis position in NATIVE space (applying the existing offset)
                       d = v - current_position[i];                    // How much is the current axis position altered by?
           if (!NEAR_ZERO(d)) {
-            #if HAS_POSITION_SHIFT && !IS_SCARA                       // When using workspaces...
+            #if HAS_POSITION_SHIFT && NONE(IS_SCARA, POLARGRAPH)      // When using workspaces...
               if (TERN1(HAS_EXTRUDERS, i != E_AXIS)) {
                 position_shift[i] += d;                               // ...most axes offset the workspace...
                 update_workspace_offset((AxisEnum)i);