From 933e2ccd7f2a097ddd02427235f3ce79e8543f69 Mon Sep 17 00:00:00 2001 From: nonokirby <82886780+nonokirby@users.noreply.github.com> Date: Mon, 20 Jan 2025 17:56:49 -0500 Subject: [PATCH] Disable change temp with B/+ in soldering mode Disabled the change temp menu appearing when + is pressed in soldering mode to prevent accidental changes of temperature while using boost mode. --- source/Core/Threads/UI/logic/Soldering.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/Core/Threads/UI/logic/Soldering.cpp b/source/Core/Threads/UI/logic/Soldering.cpp index 45483d15..b3eaf92c 100644 --- a/source/Core/Threads/UI/logic/Soldering.cpp +++ b/source/Core/Threads/UI/logic/Soldering.cpp @@ -65,6 +65,7 @@ OperatingMode handleSolderingButtons(const ButtonState buttons, guiContext *cxt) } break; case BUTTON_F_SHORT: + break; case BUTTON_B_SHORT: cxt->transitionMode = TransitionAnimation::Left; return OperatingMode::TemperatureAdjust;