Preheat Menu shortcut option (#20350)

This commit is contained in:
Vi B-P
2021-02-25 11:23:17 -05:00
committed by GitHub
parent bcda46e3f3
commit f7d9305786
4 changed files with 36 additions and 1 deletions

View File

@@ -97,6 +97,10 @@ void menu_configuration();
void menu_spindle_laser();
#endif
#if ENABLED(PREHEAT_SHORTCUT_MENU_ITEM)
void menu_preheat_only();
#endif
#if HAS_MULTI_LANGUAGE
void menu_language();
#endif
@@ -177,6 +181,10 @@ void menu_main() {
ACTION_ITEM(MSG_HOST_START_PRINT, host_action_start);
#endif
#if ENABLED(PREHEAT_SHORTCUT_MENU_ITEM)
SUBMENU(MSG_PREHEAT_CUSTOM, menu_preheat_only);
#endif
SUBMENU(MSG_MOTION, menu_motion);
}