Browse Source

Hide Resume Print when not relevant

pull/1/head
Scott Lahteine 5 years ago
parent
commit
0a7ea7063f
  1. 7
      Marlin/src/lcd/menu/menu_main.cpp

7
Marlin/src/lcd/menu/menu_main.cpp

@ -138,7 +138,12 @@ void menu_main() {
}
#endif // !HAS_ENCODER_WHEEL && SDSUPPORT
MENU_ITEM(function, MSG_RESUME_PRINT, lcd_resume);
#if ENABLED(SDSUPPORT) || defined(ACTION_ON_RESUME)
#if ENABLED(SDSUPPORT)
if (card.isFileOpen() && card.isPaused())
#endif
MENU_ITEM(function, MSG_RESUME_PRINT, lcd_resume);
#endif
MENU_ITEM(submenu, MSG_MOTION, menu_motion);
MENU_ITEM(submenu, MSG_TEMPERATURE, menu_temperature);

Loading…
Cancel
Save