Fix battery percentage position in status icons

This commit is contained in:
Josh 2024-05-09 09:28:12 -04:00
parent 610940d260
commit e728d59733

View File

@ -23,7 +23,7 @@ void StatusIcons::Create() {
batteryIcon.Create(container); batteryIcon.Create(container);
label_battery_value = lv_label_create(lv_scr_act(), nullptr); label_battery_value = lv_label_create(container, nullptr);
lv_label_set_text_static(label_battery_value, "00%"); lv_label_set_text_static(label_battery_value, "00%");
lv_obj_align(container, nullptr, LV_ALIGN_IN_TOP_RIGHT, 0, 0); lv_obj_align(container, nullptr, LV_ALIGN_IN_TOP_RIGHT, 0, 0);