diff --git a/source/Core/Threads/UI/logic/Soldering.cpp b/source/Core/Threads/UI/logic/Soldering.cpp index 50508025..ce7be436 100644 --- a/source/Core/Threads/UI/logic/Soldering.cpp +++ b/source/Core/Threads/UI/logic/Soldering.cpp @@ -163,11 +163,11 @@ OperatingMode gui_solderingMode(const ButtonState buttons, guiContext *cxt) { return OperatingMode::Sleeping; } - if (heaterThermalRunaway) { - currentTempTargetDegC = 0; // heater control off - heaterThermalRunaway = false; - cxt->transitionMode = TransitionAnimation::Right; - return OperatingMode::ThermalRunaway; - } +// if (heaterThermalRunaway) { +// currentTempTargetDegC = 0; // heater control off +// heaterThermalRunaway = false; +// cxt->transitionMode = TransitionAnimation::Right; +// return OperatingMode::ThermalRunaway; +// } return handleSolderingButtons(buttons, cxt); }