1
0
forked from me/IronOS

Fix text pos

This commit is contained in:
Ben V. Brown
2021-09-17 21:38:19 +10:00
parent 4951d72aee
commit 21f8859f5a

View File

@@ -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;
}