From 1bee2dab602241223cf3c31ae6ef4919d0b7195e Mon Sep 17 00:00:00 2001 From: Vovodroid Date: Tue, 26 Aug 2025 20:33:28 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Fix=20PLR=20Z=20move=20precision?= =?UTF-8?q?=20(#27965)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Marlin/src/feature/powerloss.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/feature/powerloss.cpp b/Marlin/src/feature/powerloss.cpp index d9af336d3a..d4f5e04882 100644 --- a/Marlin/src/feature/powerloss.cpp +++ b/Marlin/src/feature/powerloss.cpp @@ -485,7 +485,7 @@ void PrintJobRecovery::resume() { #if !HOMING_Z_DOWN // The physical Z was adjusted at power-off so undo the M420S1 correction to Z with G92.9. - PROCESS_SUBCOMMANDS_NOW(TS(F("G92.9Z"), p_float_t(z_now, 1))); + PROCESS_SUBCOMMANDS_NOW(TS(F("G92.9Z"), p_float_t(z_now, 3))); #endif #endif