diff options
| author | Michele Bini <michele.bini@gmail.com> | 2022-03-30 09:55:22 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2022-04-10 07:36:35 (GMT) |
| commit | f67d92a56cd2246a11c18a4a58b808222cb9d744 (patch) | |
| tree | 80f238aeb4cea5bb9e3f9036da6e9c8e3ac23665 | |
| parent | 22234afb4c8c2fa9b4a04610c9f7f7a2b52a44b5 (diff) | |
Reduce interface noise
| -rw-r--r-- | src/displayapp/screens/WatchFaceAnalog24.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/displayapp/screens/WatchFaceAnalog24.cpp b/src/displayapp/screens/WatchFaceAnalog24.cpp index d264845..6138694 100644 --- a/src/displayapp/screens/WatchFaceAnalog24.cpp +++ b/src/displayapp/screens/WatchFaceAnalog24.cpp @@ -74,10 +74,12 @@ WatchFaceAnalog24::WatchFaceAnalog24(Pinetime::Applications::DisplayApp* app, lv_label_set_text(batteryIcon, Symbols::batteryHalf); lv_obj_align(batteryIcon, NULL, LV_ALIGN_IN_TOP_RIGHT, 0, 0); lv_obj_set_auto_realign(batteryIcon, true); + bleIcon = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_color(bleIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x0082FC)); lv_label_set_text_static(bleIcon, Symbols::bluetooth); - lv_obj_align(bleIcon, batteryPlug, LV_ALIGN_OUT_BOTTOM_LEFT, -5, 0); + lv_obj_align(bleIcon, batteryIcon, LV_ALIGN_OUT_BOTTOM_RIGHT, 0, 0); + lv_obj_set_auto_realign(bleIcon, true); bleIcon = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_color(bleIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x0082FC)); |
