diff --git a/Marlin/src/gcode/bedlevel/abl/G29.cpp b/Marlin/src/gcode/bedlevel/abl/G29.cpp index 6ff09b3a7a23..9e85b731e136 100644 --- a/Marlin/src/gcode/bedlevel/abl/G29.cpp +++ b/Marlin/src/gcode/bedlevel/abl/G29.cpp @@ -812,7 +812,7 @@ G29_TYPE GcodeSuite::G29() { #endif // AUTO_BED_LEVELING_3POINT - TERN_(HAS_STATUS_MESSAGE, ui.reset_status()); + ui.reset_status(); // Stow the probe. No raise for FIX_MOUNTED_PROBE. if (probe.stow()) { diff --git a/Marlin/src/module/probe.cpp b/Marlin/src/module/probe.cpp index dc40a8ecd788..5e0fb652944f 100644 --- a/Marlin/src/module/probe.cpp +++ b/Marlin/src/module/probe.cpp @@ -356,7 +356,7 @@ FORCE_INLINE void probe_specific_action(const bool deploy) { FSTR_P const ds_fstr = deploy ? GET_TEXT_F(MSG_MANUAL_DEPLOY) : GET_TEXT_F(MSG_MANUAL_STOW); ui.return_to_status(); // To display the new status message - ui.set_max_status(ds_fstr); + ui.set_max_status(ds_fstr); // Set a status message that won't be overwritten by the host SERIAL_ECHOLN(deploy ? GET_EN_TEXT_F(MSG_MANUAL_DEPLOY) : GET_EN_TEXT_F(MSG_MANUAL_STOW)); OKAY_BUZZ(); @@ -381,7 +381,8 @@ FORCE_INLINE void probe_specific_action(const bool deploy) { #endif TERN_(HAS_RESUME_CONTINUE, wait_for_user_response()); - ui.reset_status(); + ui.reset_alert_level(); + //ui.reset_status(); #endif // PAUSE_BEFORE_DEPLOY_STOW