We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d88f2c0 commit 23991c5Copy full SHA for 23991c5
src/displayapp/screens/BatteryInfo.cpp
@@ -68,6 +68,7 @@ void BatteryInfo::Refresh() {
68
}
69
70
lv_label_set_text_fmt(percent, "%02i%%", batteryPercent);
71
+ lv_obj_align(percent, charging_arc, LV_ALIGN_CENTER, 0, 0);
72
73
lv_obj_align(status, voltage, LV_ALIGN_IN_BOTTOM_MID, 0, -27);
74
lv_label_set_text_fmt(voltage, "%1i.%02i volts", batteryVoltage / 1000, batteryVoltage % 1000 / 10);
0 commit comments