Skip to content

Commit ab8515f

Browse files
liamchargerJF002
authored andcommitted
PineTimeStyle: fix brief display of weather dummy data
1 parent f17bbc3 commit ab8515f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/displayapp/screens/WatchFacePineTimeStyle.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(Controllers::DateTime& dateTimeCo
116116
weatherIcon = lv_label_create(lv_scr_act(), nullptr);
117117
lv_obj_set_style_local_text_color(weatherIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
118118
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);
120120
lv_obj_align(weatherIcon, sidebar, LV_ALIGN_IN_TOP_MID, 0, 35);
121121
lv_obj_set_auto_realign(weatherIcon, true);
122122
if (settingsController.GetPTSWeather() == Pinetime::Controllers::Settings::PTSWeather::On) {
@@ -127,6 +127,7 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(Controllers::DateTime& dateTimeCo
127127

128128
temperature = lv_label_create(lv_scr_act(), nullptr);
129129
lv_obj_set_style_local_text_color(temperature, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
130+
lv_label_set_text(temperature, "--");
130131
lv_obj_align(temperature, sidebar, LV_ALIGN_IN_TOP_MID, 0, 65);
131132
if (settingsController.GetPTSWeather() == Pinetime::Controllers::Settings::PTSWeather::On) {
132133
lv_obj_set_hidden(temperature, false);

0 commit comments

Comments
 (0)