🎨 Refactor Host Actions as singleton
This commit is contained in:
committed by
Scott Lahteine
parent
1ead7ce681
commit
f80bcdcc5c
@ -2363,7 +2363,7 @@ void HMI_PauseOrStop() {
|
||||
card.abortFilePrintSoon(); // Let the main loop handle SD abort
|
||||
dwin_abort_flag = true; // Reset feedrate, return to Home
|
||||
#ifdef ACTION_ON_CANCEL
|
||||
host_action_cancel();
|
||||
hostui.cancel();
|
||||
#endif
|
||||
Popup_Window_Home(true);
|
||||
if (HMI_flag.home_flag) planner.synchronize(); // Wait for planner moves to finish!
|
||||
|
@ -1391,7 +1391,7 @@ void HMI_PauseOrStop() {
|
||||
card.abortFilePrintSoon(); // Let the main loop handle SD abort
|
||||
dwin_abort_flag = true; // Reset feedrate, return to Home
|
||||
#ifdef ACTION_ON_CANCEL
|
||||
host_action_cancel();
|
||||
hostui.cancel();
|
||||
#endif
|
||||
DWIN_Draw_Popup(ICON_BLTouch, F("Stopping...") , F("Please wait until done."));
|
||||
}
|
||||
|
@ -4503,7 +4503,7 @@ void CrealityDWINClass::Print_Screen_Control() {
|
||||
#endif
|
||||
}
|
||||
else {
|
||||
TERN_(HOST_ACTION_COMMANDS, host_action_resume());
|
||||
TERN_(HOST_ACTION_COMMANDS, hostui.resume());
|
||||
}
|
||||
Draw_Print_Screen();
|
||||
}
|
||||
@ -4553,7 +4553,7 @@ void CrealityDWINClass::Popup_Control() {
|
||||
#endif
|
||||
}
|
||||
else {
|
||||
TERN_(HOST_ACTION_COMMANDS, host_action_pause());
|
||||
TERN_(HOST_ACTION_COMMANDS, hostui.pause());
|
||||
}
|
||||
}
|
||||
Draw_Print_Screen();
|
||||
@ -4566,7 +4566,7 @@ void CrealityDWINClass::Popup_Control() {
|
||||
thermalManager.disable_all_heaters();
|
||||
}
|
||||
else {
|
||||
TERN_(HOST_ACTION_COMMANDS, host_action_cancel());
|
||||
TERN_(HOST_ACTION_COMMANDS, hostui.cancel());
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user