Host Action: Start (#19398)
This commit is contained in:
committed by
Scott Lahteine
parent
70c5871910
commit
23376b8a31
@ -54,6 +54,10 @@
|
||||
#include "../../feature/password/password.h"
|
||||
#endif
|
||||
|
||||
#ifdef ACTION_ON_START
|
||||
#include "../../feature/host_actions.h"
|
||||
#endif
|
||||
|
||||
void menu_tune();
|
||||
void menu_cancelobject();
|
||||
void menu_motion();
|
||||
@ -158,6 +162,10 @@ void menu_main() {
|
||||
if (TERN0(MACHINE_CAN_PAUSE, printingIsPaused()))
|
||||
ACTION_ITEM(MSG_RESUME_PRINT, ui.resume_print);
|
||||
|
||||
#ifdef ACTION_ON_START
|
||||
ACTION_ITEM(MSG_HOST_START_PRINT, host_action_start);
|
||||
#endif
|
||||
|
||||
SUBMENU(MSG_MOTION, menu_motion);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user