1
0
forked from me/IronOS

In detailed soldering view add '+' symbol after the temperature to indicate active boost mode (when active)

This commit is contained in:
Devydd
2021-03-18 17:00:18 +01:00
parent 8e105d0122
commit 00e6e2a8f7

View File

@@ -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 {