From 414d3f1c128afd69dc2c5cca74d5cf1a4ff47ef8 Mon Sep 17 00:00:00 2001 From: "D.R.racer" Date: Wed, 16 Nov 2022 14:20:13 +0100 Subject: [PATCH] Display Welcome message after MMU progress report ends Should make the status line look cleaner when the printer is not printing. --- Firmware/mmu2_reporting.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Firmware/mmu2_reporting.cpp b/Firmware/mmu2_reporting.cpp index f98ae79ac..198e67e88 100644 --- a/Firmware/mmu2_reporting.cpp +++ b/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; }