From cdf4ed87a1a483bd230a8c7159ab47513ca32d5c Mon Sep 17 00:00:00 2001 From: Roxy-3D Date: Sat, 6 Jul 2019 21:01:56 -0500 Subject: [PATCH] Add back required precision for off printer mesh saves --- Marlin/src/feature/bedlevel/ubl/ubl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/feature/bedlevel/ubl/ubl.cpp b/Marlin/src/feature/bedlevel/ubl/ubl.cpp index 1b7bebfa61..ee8fb48c9d 100644 --- a/Marlin/src/feature/bedlevel/ubl/ubl.cpp +++ b/Marlin/src/feature/bedlevel/ubl/ubl.cpp @@ -50,7 +50,7 @@ if (!isnan(z_values[x][y])) { SERIAL_ECHO_START(); SERIAL_ECHOPAIR(" M421 I", x, " J", y); - SERIAL_ECHOPAIR_F(" Z", z_values[x][y], 2); + SERIAL_ECHOPAIR_F(" Z", z_values[x][y], 4); SERIAL_EOL(); serial_delay(75); // Prevent Printrun from exploding }