Skip to content

Commit d019603

Browse files
committed
Swapped bluetooth and weather positions, and removed degree symbol when
no weather data is present.
1 parent 232e496 commit d019603

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/displayapp/screens/WatchFaceTerminal.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ WatchFaceTerminal::WatchFaceTerminal(Controllers::DateTime& dateTimeController,
3838

3939
connectState = lv_label_create(lv_scr_act(), nullptr);
4040
lv_label_set_recolor(connectState, true);
41-
lv_obj_align(connectState, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, 40);
41+
lv_obj_align(connectState, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, 60);
4242

4343
notificationIcon = lv_label_create(lv_scr_act(), nullptr);
4444
lv_obj_align(notificationIcon, nullptr, LV_ALIGN_IN_LEFT_MID, 0, -100);
@@ -69,7 +69,7 @@ WatchFaceTerminal::WatchFaceTerminal(Controllers::DateTime& dateTimeController,
6969

7070
weather = lv_label_create(lv_scr_act(), nullptr);
7171
lv_label_set_recolor(weather, true);
72-
lv_obj_align(weather, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, 60);
72+
lv_obj_align(weather, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, 40);
7373

7474
taskRefresh = lv_task_create(RefreshTaskCallback, LV_DISP_DEF_REFR_PERIOD, LV_TASK_PRIO_MID, this);
7575
Refresh();
@@ -175,7 +175,7 @@ void WatchFaceTerminal::Refresh() {
175175
// Change to GetSimpleCondition with pull request #2134 (Add shorter/simpler weather condition options)
176176
Symbols::GetCondition(optCurrentWeather->iconId));
177177
} else {
178-
lv_label_set_text(weather, "[WTHR]#ffdd00 ---°");
178+
lv_label_set_text(weather, "[WTHR]#ffdd00 ---");
179179
}
180180
}
181181
}

0 commit comments

Comments
 (0)