From d6ad7be2286f008e492ff7b42fae0c49aae36a1a Mon Sep 17 00:00:00 2001 From: Reinhold Gschweicher Date: Thu, 2 Dec 2021 23:10:24 +0100 Subject: [PATCH] PineTimeStyle: move down notification icon away from bluetooth icon The notification icon and the bluetooth icon overlapped. Move the Notivication icon down a bit for better alignment. Pixel perfect placement: - Battery - 7px - bluetooth - 7px - notification - 8px - FRI - Charger - 4px - bluetooth - 7px - notification - 8px - FRI --- src/displayapp/screens/PineTimeStyle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/displayapp/screens/PineTimeStyle.cpp b/src/displayapp/screens/PineTimeStyle.cpp index 781a359c00..4e87402677 100644 --- a/src/displayapp/screens/PineTimeStyle.cpp +++ b/src/displayapp/screens/PineTimeStyle.cpp @@ -108,7 +108,7 @@ PineTimeStyle::PineTimeStyle(DisplayApp* app, notificationIcon = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_color(notificationIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000)); - lv_obj_align(notificationIcon, sidebar, LV_ALIGN_IN_TOP_MID, 0, 40); + lv_obj_align(notificationIcon, sidebar, LV_ALIGN_IN_TOP_MID, 0, 51); // Calendar icon calendarOuter = lv_obj_create(lv_scr_act(), nullptr);