From fb7a29ce8effd695dbf137e0cfae49112634712f Mon Sep 17 00:00:00 2001 From: Knutwurst <36196269+knutwurst@users.noreply.github.com> Date: Tue, 6 Jun 2023 21:44:08 +0200 Subject: [PATCH] Disable automatic mesh adjustment when Z offset is altered. --- Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp b/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp index 1cd1ee5a..e37a7c84 100755 --- a/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp +++ b/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp @@ -1584,6 +1584,7 @@ void AnycubicTouchscreenClass::RenderCurrentFolder(uint16_t selectedNumber) { SENDLINE_PGM(""); } else { + /* GRID_LOOP(x, y) { const xy_uint8_t pos { x, y }; const float currval = getMeshPoint(pos); @@ -1592,6 +1593,7 @@ void AnycubicTouchscreenClass::RenderCurrentFolder(uint16_t selectedNumber) { SERIAL_ECHOLNPGM("Change mesh point X", x," Y",y ," from ", currval, " to ", getMeshPoint(pos) ); #endif } + */ const float currZOffset = getZOffset_mm(); #if ENABLED(ANYCUBIC_TFT_DEBUG) SERIAL_ECHOLNPGM("Change probe offset from ", currZOffset, " to ", currZOffset + Zshift);