From 339125801e98f034e2ae3ade5214e18d7eea6eb6 Mon Sep 17 00:00:00 2001 From: Knutwurst <36196269+knutwurst@users.noreply.github.com> Date: Tue, 20 Jun 2023 15:07:17 +0200 Subject: [PATCH] Fix typos --- Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp b/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp index 92e08c15..db2ab962 100755 --- a/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp +++ b/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp @@ -464,7 +464,7 @@ void AnycubicTouchscreenClass::HandleSpecialMenu() { SpecialMenu = false; } else if ((strcasestr_P(currentTouchscreenSelection, PSTR(SM_BACK_L)) != NULL) || (strcasestr_P(currentTouchscreenSelection, PSTR(SM_BACK_S)) != NULL)) { - SERIAL_ECHOLNPGM("Special Menu: Exit Manual Med Leveling + enable soft endstops"); + SERIAL_ECHOLNPGM("Special Menu: Exit Manual Bed Leveling + enable soft endstops"); setSoftEndstopState(true); MMLMenu = false; } else if ((strcasestr_P(currentTouchscreenSelection, PSTR(SM_FLOWMENU_L)) != NULL) || @@ -505,7 +505,7 @@ void AnycubicTouchscreenClass::HandleSpecialMenu() { #if ENABLED(KNUTWURST_BLTOUCH) else if ((strcasestr_P(currentTouchscreenSelection, PSTR(SM_BLTZMENU_L)) != NULL) || (strcasestr_P(currentTouchscreenSelection, PSTR(SM_BLTZMENU_S)) != NULL)) { - SERIAL_ECHOLNPGM("Special Menu: Enter BLTouch Menu"); + SERIAL_ECHOLNPGM("Special Menu: Enter BLTouch Menu + disable SoftEndstops"); BLTouchMenu = true; setSoftEndstopState(false); } else if ((strcasestr_P(currentTouchscreenSelection, PSTR(SM_BLTZ_UP_L)) != NULL) ||