From 7925df6aa0ada83e3d5d5ae06f015e2c689529b8 Mon Sep 17 00:00:00 2001 From: Alex Voinea Date: Thu, 22 Dec 2022 15:45:04 +0100 Subject: [PATCH] Default check action is continuing --- Firmware/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Firmware/util.cpp b/Firmware/util.cpp index 8bc8c2669..219076e58 100644 --- a/Firmware/util.cpp +++ b/Firmware/util.cpp @@ -291,7 +291,7 @@ void fCheckModeInit() { static void render_M862_warnings(const char* warning, const char* strict, uint8_t check) { if (check == 1) { // Warning, stop print if user selects 'No' - if (lcd_show_fullscreen_message_yes_no_and_wait_P(warning)) { + if (lcd_show_fullscreen_message_yes_no_and_wait_P(warning, true, LCD_LEFT_BUTTON_CHOICE) == LCD_MIDDLE_BUTTON_CHOICE) { lcd_print_stop(); } } else if (check == 2) { // Strict, always stop print