From 4a9932da689468bfaf5b72c33ee6fd084c4105a9 Mon Sep 17 00:00:00 2001 From: JustScott Date: Mon, 3 Feb 2025 15:25:50 -0600 Subject: Swapped bluetooth and weather positions, and removed degree symbol when no weather data is present. --- src/displayapp/screens/WatchFaceTerminal.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/displayapp/screens/WatchFaceTerminal.cpp') diff --git a/src/displayapp/screens/WatchFaceTerminal.cpp b/src/displayapp/screens/WatchFaceTerminal.cpp index 4d693984..56b8ad1d 100644 --- a/src/displayapp/screens/WatchFaceTerminal.cpp +++ b/src/displayapp/screens/WatchFaceTerminal.cpp @@ -38,7 +38,7 @@ WatchFaceTerminal::WatchFaceTerminal(Controllers::DateTime& dateTimeController, connectState = lv_label_create(lv_scr_act(), nullptr); lv_label_set_recolor(connectState, true); - lv_obj_align(connectState, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, 40); + lv_obj_align(connectState, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, 60); notificationIcon = lv_label_create(lv_scr_act(), nullptr); lv_obj_align(notificationIcon, nullptr, LV_ALIGN_IN_LEFT_MID, 0, -100); @@ -69,7 +69,7 @@ WatchFaceTerminal::WatchFaceTerminal(Controllers::DateTime& dateTimeController, weather = lv_label_create(lv_scr_act(), nullptr); lv_label_set_recolor(weather, true); - lv_obj_align(weather, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, 60); + lv_obj_align(weather, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, 40); taskRefresh = lv_task_create(RefreshTaskCallback, LV_DISP_DEF_REFR_PERIOD, LV_TASK_PRIO_MID, this); Refresh(); @@ -175,7 +175,7 @@ void WatchFaceTerminal::Refresh() { // Change to GetSimpleCondition with pull request #2134 (Add shorter/simpler weather condition options) Symbols::GetCondition(optCurrentWeather->iconId)); } else { - lv_label_set_text(weather, "[WTHR]#ffdd00 ---°"); + lv_label_set_text(weather, "[WTHR]#ffdd00 ---"); } } } -- cgit v1.2.3-70-g09d2