Various fixes for MarlinUI and ExtUI (#12439)

This commit is contained in:
Marcio Teixeira
2018-11-17 21:21:44 -07:00
committed by Scott Lahteine
parent d3605cfc26
commit c1e17037e5
24 changed files with 226 additions and 216 deletions

View File

@ -62,7 +62,7 @@ void GcodeSuite::M0_M1() {
#if HAS_LCD_MENU
if (has_message)
ui.setstatus(args, true);
ui.set_status(args, true);
else {
LCD_MESSAGEPGM(MSG_USERWAIT);
#if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0

View File

@ -28,6 +28,6 @@
*/
void GcodeSuite::M117() {
ui.setstatus(parser.string_arg);
ui.set_status(parser.string_arg);
}