more UI fixes

This commit is contained in:
2026-08-02 15:01:55 +02:00
parent b04d5f6ee8
commit 1005b4434c
3 changed files with 25 additions and 18 deletions
+2 -2
View File
@@ -58,13 +58,13 @@ void buildList() {
// time column
lv_obj_t *time_label = lv_label_create(row);
lv_label_set_text(time_label, hhmm.c_str());
lv_obj_set_style_text_color(time_label, Theme::text(), 0);
lv_obj_set_style_text_color(time_label, lv_color_hex(0xFFFFFF), 0);
lv_obj_align(time_label, LV_ALIGN_TOP_LEFT, 44, 0);
// degree column
lv_obj_t *temp_label = lv_label_create(row);
lv_label_set_text(temp_label, (String(fe.temperature) + "C").c_str());
lv_obj_set_style_text_color(temp_label, Theme::text(), 0);
lv_obj_set_style_text_color(temp_label, lv_color_hex(0xFFFFFF), 0);
lv_obj_align(temp_label, LV_ALIGN_TOP_LEFT, 160, 0);
// text column