From 92e9d411f8b2cf0881e638edd09e5e3f47af349d Mon Sep 17 00:00:00 2001 From: MistrKernnunos Date: Thu, 24 Nov 2022 13:24:16 +0100 Subject: [PATCH] Revert "Check if position is unknown and home axis" This reverts commit eae99158d9f36dd5807022647adab7cb2a91315b. --- src/gui/MItem_tools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/MItem_tools.cpp b/src/gui/MItem_tools.cpp index e882986d2e..48b09f0217 100644 --- a/src/gui/MItem_tools.cpp +++ b/src/gui/MItem_tools.cpp @@ -127,7 +127,7 @@ void MI_MESH_BED::click(IWindowMenu & /*window_menu*/) { Response response = Response::No; do { //home if we repeat MBL, nozzle may be in different position than expected - if (!marlin_all_axes_homed() || !marlin_all_axes_known() || response == Response::Yes) { + if (!marlin_all_axes_homed() || response == Response::Yes) { marlin_event_clr(MARLIN_EVT_CommandBegin); marlin_gcode("G28"); while (!marlin_event_clr(MARLIN_EVT_CommandBegin))