Browse Source

Fix stuck "Print Aborted" LCD message

Fixes #6393
Scott Lahteine 7 years ago
parent
commit
adb8e68592
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/ultralcd.cpp

+ 1
- 1
Marlin/ultralcd.cpp View File

@@ -705,7 +705,7 @@ void kill_screen(const char* lcd_msg) {
705 705
         thermalManager.autotempShutdown();
706 706
       #endif
707 707
       wait_for_heatup = false;
708
-      lcd_setstatuspgm(PSTR(MSG_PRINT_ABORTED), true);
708
+      LCD_MESSAGEPGM(MSG_PRINT_ABORTED);
709 709
     }
710 710
 
711 711
   #endif // SDSUPPORT

Loading…
Cancel
Save