Fix call to synchronize in lcd_pause_job

This commit is contained in:
Scott Lahteine 2019-05-19 15:51:15 -05:00
parent 9bf65eacaa
commit 7b4c3bd92a

View file

@ -53,6 +53,8 @@
#if MACHINE_CAN_PAUSE
void lcd_pause_job() {
ui.synchronize(PSTR(MSG_PAUSE_PRINT));
#if ENABLED(POWER_LOSS_RECOVERY)
if (recovery.enabled) recovery.save(true, false);
#endif
@ -69,7 +71,6 @@
#elif defined(ACTION_ON_PAUSE)
host_action_pause();
#endif
planner.synchronize();
}
void lcd_resume() {