Browse Source

Bug corrected:

Persistent homing message.
Message was declared as an alert, therefore it was persistent.
Updated to message.
fmalpartida 9 years ago
parent
commit
150a35eff8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -6095,7 +6095,7 @@ void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
6095 6095
     if (!READ(HOME_PIN)) {
6096 6096
       if (!homeDebounceCount) {
6097 6097
         enqueuecommands_P(PSTR("G28"));
6098
-        LCD_ALERTMESSAGEPGM(MSG_AUTO_HOME);
6098
+        LCD_MESSAGEPGM(MSG_AUTO_HOME);
6099 6099
       }
6100 6100
       if (homeDebounceCount < HOME_DEBOUNCE_DELAY)
6101 6101
         homeDebounceCount++;

Loading…
Cancel
Save