From 21f8859f5a2da8a02a97f7219d0a06c2cabac72b Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Fri, 17 Sep 2021 21:38:19 +1000 Subject: [PATCH] Fix text pos --- source/Core/Src/gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Core/Src/gui.cpp b/source/Core/Src/gui.cpp index 8e1f921e..b1c5e25f 100644 --- a/source/Core/Src/gui.cpp +++ b/source/Core/Src/gui.cpp @@ -324,13 +324,13 @@ static bool settings_displayInputMinVRange(void) { #ifdef POW_QC static bool settings_displayQCInputV(void) { - printShortDescription(SettingsItemIndex::QCMaxVoltage, 5); + printShortDescription(SettingsItemIndex::QCMaxVoltage, 4); // These are only used in QC modes // Allows setting the voltage negotiated for QC auto voltage = getSettingValue(SettingsOptions::QCIdealVoltage); OLED::printNumber(voltage / 10, 2, FontStyle::LARGE); OLED::print(SymbolDot, FontStyle::LARGE); - OLED::printNumber(voltage % 10, 2, FontStyle::LARGE); + OLED::printNumber(voltage % 10, 1, FontStyle::LARGE); OLED::print(SymbolVolts, FontStyle::LARGE); return false; }