From 00e6e2a8f71f1b168e7f7bb2a89b697cb11368ce Mon Sep 17 00:00:00 2001 From: Devydd <68201914+devydd@users.noreply.github.com> Date: Thu, 18 Mar 2021 17:00:18 +0100 Subject: [PATCH] In detailed soldering view add '+' symbol after the temperature to indicate active boost mode (when active) --- source/Core/Threads/GUIThread.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/source/Core/Threads/GUIThread.cpp b/source/Core/Threads/GUIThread.cpp index f6bcd8a5..f05d325d 100644 --- a/source/Core/Threads/GUIThread.cpp +++ b/source/Core/Threads/GUIThread.cpp @@ -547,7 +547,13 @@ static void gui_solderingMode(uint8_t jumpToSleep) { OLED::setCursor(0, 8); OLED::print(SleepingTipAdvancedString); gui_drawTipTemp(true); - OLED::print(SymbolSpace); + + if (boostModeOn) { + OLED::print(SymbolPlus); + } else { + OLED::print(SymbolSpace); + } + printVoltage(); OLED::print(SymbolVolts); } else {