浏览代码

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

Hannes Brandstätter-Müller 6 年前
父节点
当前提交
67b22760d9
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      Marlin/src/module/probe.cpp

+ 2
- 1
Marlin/src/module/probe.cpp 查看文件

@@ -370,7 +370,8 @@ FORCE_INLINE void probe_specific_action(const bool deploy) {
370 370
     BUZZ(100, 698);
371 371
 
372 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 375
     serialprintPGM(ds_str);
375 376
     SERIAL_EOL();
376 377
 

正在加载...
取消
保存