From 150a35eff8e8b171101c76d76d0e493f9b811c3e Mon Sep 17 00:00:00 2001 From: fmalpartida Date: Mon, 4 May 2015 19:48:49 +0200 Subject: [PATCH] Bug corrected: Persistent homing message. Message was declared as an alert, therefore it was persistent. Updated to message. --- Marlin/Marlin_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 759a0fea9..63958bf83 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -6095,7 +6095,7 @@ void manage_inactivity(bool ignore_stepper_queue/*=false*/) { if (!READ(HOME_PIN)) { if (!homeDebounceCount) { enqueuecommands_P(PSTR("G28")); - LCD_ALERTMESSAGEPGM(MSG_AUTO_HOME); + LCD_MESSAGEPGM(MSG_AUTO_HOME); } if (homeDebounceCount < HOME_DEBOUNCE_DELAY) homeDebounceCount++;