diff options
| author | Victor Kareh <vkareh@redhat.com> | 2026-01-05 07:12:08 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-05 13:12:08 +0100 |
| commit | f88c69a31aadb0fdfe6555db626ba8f05e756272 (patch) | |
| tree | f173289f96c89a38afc5198a6b61e192cf372118 /src/displayapp/screens/WatchFaceDigital.cpp | |
| parent | 51a6fb6a7ed7a410bb141966a43a7649d10bbdfc (diff) | |
SimpleWeatherService: Add sunrise and sunset data (#2100)
* SimpleWeatherService: Add sunrise and sunset data
---------
Co-authored-by: mark9064 <30447455+mark9064@users.noreply.github.com>
Diffstat (limited to 'src/displayapp/screens/WatchFaceDigital.cpp')
| -rw-r--r-- | src/displayapp/screens/WatchFaceDigital.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/WatchFaceDigital.cpp b/src/displayapp/screens/WatchFaceDigital.cpp index 3163c6e7..a037abfe 100644 --- a/src/displayapp/screens/WatchFaceDigital.cpp +++ b/src/displayapp/screens/WatchFaceDigital.cpp @@ -183,7 +183,7 @@ void WatchFaceDigital::Refresh() { tempUnit = 'F'; } lv_label_set_text_fmt(temperature, "%d°%c", temp, tempUnit); - lv_label_set_text(weatherIcon, Symbols::GetSymbol(optCurrentWeather->iconId)); + lv_label_set_text(weatherIcon, Symbols::GetSymbol(optCurrentWeather->iconId, weatherService.IsNight())); } else { lv_label_set_text_static(temperature, ""); lv_label_set_text(weatherIcon, ""); |
