Hide Resume Print when not relevant

This commit is contained in:
Scott Lahteine 2019-02-04 03:02:44 -06:00
parent afe79ba22b
commit 0a7ea7063f

View file

@ -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);