Don't always set MSG_WELCOME at end of toolchange
This should only be set when NOT printing Change in memory: Flash: +8 bytes SRAM: 0 bytes
This commit is contained in:
parent
c15ea67379
commit
4b3dc65598
|
|
@ -20,7 +20,9 @@ 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
|
||||
if (!printJobOngoing()) {
|
||||
lcd_setstatuspgm(MSG_WELCOME);
|
||||
}
|
||||
custom_message_type = CustomMsg::Status;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue