From fc10a24a89b1c221dd9cb35b487cd3fbd038c1d0 Mon Sep 17 00:00:00 2001 From: discip <53649486+discip@users.noreply.github.com> Date: Tue, 24 Jan 2023 18:22:50 +0100 Subject: [PATCH] simplification --- source/Core/Threads/OperatingModes/Soldering.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/Core/Threads/OperatingModes/Soldering.cpp b/source/Core/Threads/OperatingModes/Soldering.cpp index 0d997ee6..269200c3 100644 --- a/source/Core/Threads/OperatingModes/Soldering.cpp +++ b/source/Core/Threads/OperatingModes/Soldering.cpp @@ -133,13 +133,12 @@ void gui_solderingMode(uint8_t jumpToSleep) { if (x10Watt > 999) { // If we exceed 99.9W we drop the decimal place to keep it all fitting OLED::print(SmallSymbolSpace, FontStyle::SMALL); OLED::printNumber(x10WattHistory.average() / 10, 3, FontStyle::SMALL); - OLED::print(SmallSymbolWatts, FontStyle::SMALL); } else { OLED::printNumber(x10WattHistory.average() / 10, 2, FontStyle::SMALL); OLED::print(SmallSymbolDot, FontStyle::SMALL); OLED::printNumber(x10WattHistory.average() % 10, 1, FontStyle::SMALL); - OLED::print(SmallSymbolWatts, FontStyle::SMALL); } + OLED::print(SmallSymbolWatts, FontStyle::SMALL); } if (OLED::getRotation()) {