Drop extraneous calls to lcd_update

This commit is contained in:
Scott Lahteine 2017-04-04 19:24:03 -05:00
parent d6db7a9b03
commit 0027c22839

View file

@ -6463,7 +6463,6 @@ inline void gcode_M140() {
#if ENABLED(ULTIPANEL) #if ENABLED(ULTIPANEL)
powersupply = true; powersupply = true;
LCD_MESSAGEPGM(WELCOME_MSG); LCD_MESSAGEPGM(WELCOME_MSG);
lcd_update();
#endif #endif
} }
@ -6496,7 +6495,6 @@ inline void gcode_M81() {
powersupply = false; powersupply = false;
#endif #endif
LCD_MESSAGEPGM(MACHINE_NAME " " MSG_OFF "."); LCD_MESSAGEPGM(MACHINE_NAME " " MSG_OFF ".");
lcd_update();
#endif #endif
} }