diff options
Diffstat (limited to 'src')
| -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 ---"); } |
