Skip to content
Snippets Groups Projects
Commit 0a7ea706 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Hide Resume Print when not relevant

parent afe79ba2
Branches
Tags
No related merge requests found
...@@ -138,7 +138,12 @@ void menu_main() { ...@@ -138,7 +138,12 @@ void menu_main() {
} }
#endif // !HAS_ENCODER_WHEEL && SDSUPPORT #endif // !HAS_ENCODER_WHEEL && SDSUPPORT
#if ENABLED(SDSUPPORT) || defined(ACTION_ON_RESUME)
#if ENABLED(SDSUPPORT)
if (card.isFileOpen() && card.isPaused())
#endif
MENU_ITEM(function, MSG_RESUME_PRINT, lcd_resume); MENU_ITEM(function, MSG_RESUME_PRINT, lcd_resume);
#endif
MENU_ITEM(submenu, MSG_MOTION, menu_motion); MENU_ITEM(submenu, MSG_MOTION, menu_motion);
MENU_ITEM(submenu, MSG_TEMPERATURE, menu_temperature); MENU_ITEM(submenu, MSG_TEMPERATURE, menu_temperature);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment