Skip to content

Commit 51a6fb6

Browse files
committed
Use simple condition for terminal watchface
1 parent 2702d07 commit 51a6fb6

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/displayapp/screens/WatchFaceTerminal.cpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -167,12 +167,7 @@ void WatchFaceTerminal::Refresh() {
167167
temp = optCurrentWeather->temperature.Fahrenheit();
168168
tempUnit = 'F';
169169
}
170-
lv_label_set_text_fmt(weather,
171-
"[WTHR]#ffdd00 %d°%c %s#",
172-
temp,
173-
tempUnit,
174-
// Change to GetSimpleCondition with pull request #2134 (Add shorter/simpler weather condition options)
175-
Symbols::GetCondition(optCurrentWeather->iconId));
170+
lv_label_set_text_fmt(weather, "[WTHR]#ffdd00 %d°%c %s#", temp, tempUnit, Symbols::GetSimpleCondition(optCurrentWeather->iconId));
176171
} else {
177172
lv_label_set_text(weather, "[WTHR]#ffdd00 ---");
178173
}

0 commit comments

Comments
 (0)