diff options
| author | mark9064 <30447455+mark9064@users.noreply.github.com> | 2025-12-31 17:55:01 +0000 |
|---|---|---|
| committer | mark9064 <30447455+mark9064@users.noreply.github.com> | 2025-12-31 18:21:16 +0000 |
| commit | 51a6fb6a7ed7a410bb141966a43a7649d10bbdfc (patch) | |
| tree | 93f0edacef5a67db3b4b85f7c5a64fb67fae3b62 /src/displayapp/screens | |
| parent | 2702d07548eca644dbc62e55634e3ca7b4dc0533 (diff) | |
Use simple condition for terminal watchface
Diffstat (limited to 'src/displayapp/screens')
| -rw-r--r-- | src/displayapp/screens/WatchFaceTerminal.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/displayapp/screens/WatchFaceTerminal.cpp b/src/displayapp/screens/WatchFaceTerminal.cpp index d17cdcdb..87aa91ea 100644 --- a/src/displayapp/screens/WatchFaceTerminal.cpp +++ b/src/displayapp/screens/WatchFaceTerminal.cpp @@ -167,12 +167,7 @@ void WatchFaceTerminal::Refresh() { temp = optCurrentWeather->temperature.Fahrenheit(); tempUnit = 'F'; } - lv_label_set_text_fmt(weather, - "[WTHR]#ffdd00 %d°%c %s#", - temp, - tempUnit, - // Change to GetSimpleCondition with pull request #2134 (Add shorter/simpler weather condition options) - Symbols::GetCondition(optCurrentWeather->iconId)); + lv_label_set_text_fmt(weather, "[WTHR]#ffdd00 %d°%c %s#", temp, tempUnit, Symbols::GetSimpleCondition(optCurrentWeather->iconId)); } else { lv_label_set_text(weather, "[WTHR]#ffdd00 ---"); } |
