Print progress enhancements (#14647)

This commit is contained in:
Marcio Teixeira
2019-07-17 02:12:39 -06:00
committed by Scott Lahteine
parent ebb1a7dc1f
commit 27c487bab7
13 changed files with 31 additions and 17 deletions

View File

@@ -28,6 +28,9 @@
*/
void GcodeSuite::M117() {
ui.set_status(parser.string_arg);
if (parser.string_arg && parser.string_arg[0])
ui.set_status(parser.string_arg);
else
ui.reset_status();
}