Changed watch face background color from black to white

This commit is contained in:
anschrammh 2024-09-14 18:09:19 +02:00
parent c6abbf0305
commit ebbd72aebf

View File

@ -309,7 +309,7 @@ void watch_face_create(WatchFace_t * const watchFace)
//Our display is the watch face image :
watchFace->display = lv_img_create(NULL);
lv_img_set_src(watchFace->display, watch_face_img);
lv_obj_set_style_bg_color(watchFace->display, lv_color_black(), LV_PART_MAIN);
lv_obj_set_style_bg_color(watchFace->display, lv_color_white(), LV_PART_MAIN);
lv_obj_add_event_cb(watchFace->display, &(hide_hour_and_minutes_hand_cb), LV_EVENT_LONG_PRESSED, watchFace);
//Battery arc is created here