@@ -116,7 +116,7 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(Controllers::DateTime& dateTimeCo
116
116
weatherIcon = lv_label_create (lv_scr_act (), nullptr );
117
117
lv_obj_set_style_local_text_color (weatherIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
118
118
lv_obj_set_style_local_text_font (weatherIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &fontawesome_weathericons);
119
- lv_label_set_text (weatherIcon, Symbols::cloudSunRain );
119
+ lv_label_set_text (weatherIcon, Symbols::ban );
120
120
lv_obj_align (weatherIcon, sidebar, LV_ALIGN_IN_TOP_MID, 0 , 35 );
121
121
lv_obj_set_auto_realign (weatherIcon, true );
122
122
if (settingsController.GetPTSWeather () == Pinetime::Controllers::Settings::PTSWeather::On) {
@@ -127,6 +127,7 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(Controllers::DateTime& dateTimeCo
127
127
128
128
temperature = lv_label_create (lv_scr_act (), nullptr );
129
129
lv_obj_set_style_local_text_color (temperature, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
130
+ lv_label_set_text (temperature, " --" );
130
131
lv_obj_align (temperature, sidebar, LV_ALIGN_IN_TOP_MID, 0 , 65 );
131
132
if (settingsController.GetPTSWeather () == Pinetime::Controllers::Settings::PTSWeather::On) {
132
133
lv_obj_set_hidden (temperature, false );
0 commit comments