Browse Source

Fix LCD print aborted message

Scott Lahteine 8 years ago
parent
commit
2c7a39bc0e
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      Marlin/ultralcd.cpp

+ 2
- 1
Marlin/ultralcd.cpp View File

@@ -718,7 +718,8 @@ void kill_screen(const char* lcd_msg) {
718 718
         for (uint8_t i = 0; i < FAN_COUNT; i++) fanSpeeds[i] = 0;
719 719
       #endif
720 720
       wait_for_heatup = false;
721
-      lcd_setstatusPGM(PSTR(MSG_PRINT_PAUSED), -1);
721
+      lcd_setstatusPGM(PSTR(MSG_PRINT_ABORTED), -1);
722
+      lcd_return_to_status();
722 723
     }
723 724
 
724 725
   #endif // SDSUPPORT

Loading…
Cancel
Save