From e3a2aeb4cf9498f51d2fc71d9f8c0d3bf92104c5 Mon Sep 17 00:00:00 2001 From: Knutwurst <36196269+knutwurst@users.noreply.github.com> Date: Sun, 27 Mar 2022 12:39:07 +0200 Subject: [PATCH] Revert pause response to reenable M600 pause for use with octorptint. --- Marlin/src/feature/pause.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/src/feature/pause.cpp b/Marlin/src/feature/pause.cpp index 6d595552..b914003b 100644 --- a/Marlin/src/feature/pause.cpp +++ b/Marlin/src/feature/pause.cpp @@ -282,8 +282,8 @@ bool load_filament(const_float_t slow_load_length/*=0*/, const_float_t fast_load #if EITHER(HAS_LCD_MENU, DWIN_CREALITY_LCD_ENHANCED) ui.pause_show_message(PAUSE_MESSAGE_OPTION); // Also sets PAUSE_RESPONSE_WAIT_FOR #else - //pause_menu_response = PAUSE_RESPONSE_WAIT_FOR; - pause_menu_response = PAUSE_RESPONSE_RESUME_PRINT; + pause_menu_response = PAUSE_RESPONSE_WAIT_FOR; + //pause_menu_response = PAUSE_RESPONSE_RESUME_PRINT; // KNUTWURST #endif while (pause_menu_response == PAUSE_RESPONSE_WAIT_FOR) idle_no_sleep(); }