Browse Source

Return to status to show manual deploy/stow messages (#12324)

Hannes Brandstätter-Müller 6 years ago
parent
commit
67b22760d9
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      Marlin/src/module/probe.cpp

+ 2
- 1
Marlin/src/module/probe.cpp View File

370
     BUZZ(100, 698);
370
     BUZZ(100, 698);
371
 
371
 
372
     PGM_P const ds_str = deploy ? PSTR(MSG_MANUAL_DEPLOY) : PSTR(MSG_MANUAL_STOW);
372
     PGM_P const ds_str = deploy ? PSTR(MSG_MANUAL_DEPLOY) : PSTR(MSG_MANUAL_STOW);
373
-    lcd_setstatusPGM(ds_str);
373
+    lcd_return_to_status();       // To display the new status message
374
+    lcd_setstatusPGM(ds_str, 99);
374
     serialprintPGM(ds_str);
375
     serialprintPGM(ds_str);
375
     SERIAL_EOL();
376
     SERIAL_EOL();
376
 
377
 

Loading…
Cancel
Save