Browse Source

Fix call to synchronize in lcd_pause_job

Scott Lahteine 5 years ago
parent
commit
7b4c3bd92a
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      Marlin/src/lcd/menu/menu_main.cpp

+ 2
- 1
Marlin/src/lcd/menu/menu_main.cpp View File

@@ -53,6 +53,8 @@
53 53
 #if MACHINE_CAN_PAUSE
54 54
 
55 55
   void lcd_pause_job() {
56
+    ui.synchronize(PSTR(MSG_PAUSE_PRINT));
57
+
56 58
     #if ENABLED(POWER_LOSS_RECOVERY)
57 59
       if (recovery.enabled) recovery.save(true, false);
58 60
     #endif
@@ -69,7 +71,6 @@
69 71
     #elif defined(ACTION_ON_PAUSE)
70 72
       host_action_pause();
71 73
     #endif
72
-    planner.synchronize();
73 74
   }
74 75
 
75 76
   void lcd_resume() {

Loading…
Cancel
Save