From d7b759c534f899412b9e50e1e04c38deb0749abb Mon Sep 17 00:00:00 2001 From: discip <53649486+discip@users.noreply.github.com> Date: Thu, 6 Jan 2022 02:30:45 +0100 Subject: [PATCH] fixed detailed view for lefties --- source/Core/Threads/GUIThread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Core/Threads/GUIThread.cpp b/source/Core/Threads/GUIThread.cpp index 232be976..413fdc45 100644 --- a/source/Core/Threads/GUIThread.cpp +++ b/source/Core/Threads/GUIThread.cpp @@ -689,9 +689,9 @@ static void gui_solderingMode(uint8_t jumpToSleep) { } else { setStatusLED(LED_HEATING); } - // If we have tripped thermal runaway, turn off header and show warning + // If we have tripped thermal runaway, turn off heater and show warning if (heaterThermalRunaway) { - currentTempTargetDegC = 0; // heaater control off + currentTempTargetDegC = 0; // heater control off // TODO WARNING warnUser(translatedString(Tr->WarningThermalRunaway), 10 * TICKS_SECOND);