@@ -38,7 +38,7 @@ WatchFaceTerminal::WatchFaceTerminal(Controllers::DateTime& dateTimeController,
38
38
39
39
connectState = lv_label_create (lv_scr_act (), nullptr );
40
40
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 );
42
42
43
43
notificationIcon = lv_label_create (lv_scr_act (), nullptr );
44
44
lv_obj_align (notificationIcon, nullptr , LV_ALIGN_IN_LEFT_MID, 0 , -100 );
@@ -69,7 +69,7 @@ WatchFaceTerminal::WatchFaceTerminal(Controllers::DateTime& dateTimeController,
69
69
70
70
weather = lv_label_create (lv_scr_act (), nullptr );
71
71
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 );
73
73
74
74
taskRefresh = lv_task_create (RefreshTaskCallback, LV_DISP_DEF_REFR_PERIOD, LV_TASK_PRIO_MID, this );
75
75
Refresh ();
@@ -175,7 +175,7 @@ void WatchFaceTerminal::Refresh() {
175
175
// Change to GetSimpleCondition with pull request #2134 (Add shorter/simpler weather condition options)
176
176
Symbols::GetCondition (optCurrentWeather->iconId ));
177
177
} else {
178
- lv_label_set_text (weather, " [WTHR]#ffdd00 ---° " );
178
+ lv_label_set_text (weather, " [WTHR]#ffdd00 ---" );
179
179
}
180
180
}
181
181
}
0 commit comments