Add missing ExtUI user confirmation (#14992)
This commit is contained in:
committed by
Scott Lahteine
parent
33d54c0d5a
commit
af5a7a2925
@ -79,6 +79,10 @@ float zprobe_zoffset; // Initialized by settings.load()
|
||||
#include "stepper_indirection.h"
|
||||
#endif
|
||||
|
||||
#if ENABLED(EXTENSIBLE_UI)
|
||||
#include "../lcd/extensible_ui/ui_api.h"
|
||||
#endif
|
||||
|
||||
#define DEBUG_OUT ENABLED(DEBUG_LEVELING_FEATURE)
|
||||
#include "../core/debug_out.h"
|
||||
|
||||
@ -371,6 +375,9 @@ FORCE_INLINE void probe_specific_action(const bool deploy) {
|
||||
#if ENABLED(HOST_PROMPT_SUPPORT)
|
||||
host_prompt_do(PROMPT_USER_CONTINUE, PSTR("Stow Probe"), PSTR("Continue"));
|
||||
#endif
|
||||
#if ENABLED(EXTENSIBLE_UI)
|
||||
ExtUI::onStatusChanged(PSTR("Stow Probe"));
|
||||
#endif
|
||||
while (wait_for_user) idle();
|
||||
ui.reset_status();
|
||||
|
||||
|
Reference in New Issue
Block a user