소스 검색

Display Welcome message after MMU progress report ends

Should make the status line look cleaner when the printer is not printing.
D.R.racer 2 년 전
부모
커밋
414d3f1c12
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      Firmware/mmu2_reporting.cpp

+ 1 - 0
Firmware/mmu2_reporting.cpp

@@ -20,6 +20,7 @@ void BeginReport(CommandInProgress /*cip*/, uint16_t ec) {
 
 void EndReport(CommandInProgress /*cip*/, uint16_t /*ec*/) {
     // clear the status msg line - let the printed filename get visible again
+    lcd_setstatuspgm(MSG_WELCOME); // should be seen only when the printer is not printing a file
     custom_message_type = CustomMsg::Status;
 }