File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -618,7 +618,7 @@ void lcdui_print_status_line(void)
618
618
}
619
619
} else { // Otherwise check for other special events
620
620
switch (custom_message_type) {
621
- case CustomMsg::MsgUpdate: // Short message even while printing from SD
621
+ case CustomMsg::M117: // M117 Set the status line message on the LCD
622
622
case CustomMsg::Status: // Nothing special, print status message normally
623
623
case CustomMsg::M0Wait: // M0/M1 Wait command working even from SD
624
624
lcd_print (lcd_status_message);
@@ -676,9 +676,6 @@ void lcdui_print_status_line(void)
676
676
case CustomMsg::Resuming: // Resuming
677
677
lcd_puts_at_P (0 , 3 , _T (MSG_RESUMING_PRINT));
678
678
break ;
679
- case CustomMsg::M117:
680
- lcd_print (lcd_status_message);
681
- break ;
682
679
}
683
680
}
684
681
Original file line number Diff line number Diff line change @@ -121,9 +121,8 @@ enum class CustomMsg : uint_least8_t
121
121
TempCal , //!< PINDA temperature calibration
122
122
TempCompPreheat , //!< Temperature compensation preheat
123
123
M0Wait , //!< M0/M1 Wait command working even from SD
124
- MsgUpdate , //!< Short message even while printing from SD
124
+ M117 , //!< M117 Set the status line message on the LCD
125
125
Resuming , //!< Resuming message
126
- M117 , //!< M117 Custom Message to be displayed
127
126
};
128
127
129
128
extern CustomMsg custom_message_type ;
You can’t perform that action at this time.
0 commit comments