From 102de7dac3cbfa088180375ee0a550a35828ffba Mon Sep 17 00:00:00 2001 From: kisslorand <50251547+kisslorand@users.noreply.github.com> Date: Tue, 3 Oct 2023 22:50:33 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20More=20precision=20in=20G30=20ou?= =?UTF-8?q?tput=20(#26255)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Marlin/src/gcode/probe/G30.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Marlin/src/gcode/probe/G30.cpp b/Marlin/src/gcode/probe/G30.cpp index f8fe88d3397..383b5015a01 100644 --- a/Marlin/src/gcode/probe/G30.cpp +++ b/Marlin/src/gcode/probe/G30.cpp @@ -82,9 +82,9 @@ void GcodeSuite::G30() { if (!isnan(measured_z)) { const xy_pos_t lpos = probepos.asLogical(); SString<30> msg( - F("Bed X:"), p_float_t(lpos.x, 1), - F( " Y:"), p_float_t(lpos.y, 1), - F( " Z:"), p_float_t(measured_z, 2) + F("Bed X:"), p_float_t(lpos.x, 2), + F( " Y:"), p_float_t(lpos.y, 2), + F( " Z:"), p_float_t(measured_z, 3) ); msg.echoln(); #if ANY(DWIN_LCD_PROUI, DWIN_CREALITY_LCD_JYERSUI)