Fix code formatting with 'clang-format'

This commit is contained in:
JustScott 2024-10-03 14:28:49 -05:00
parent 3341247788
commit b30f6c07b9

View file

@ -147,7 +147,11 @@ void WatchFaceTerminal::Refresh() {
temp = Controllers::SimpleWeatherService::CelsiusToFahrenheit(temp);
tempUnit = 'F';
}
lv_label_set_text_fmt(weather, "#ffffff [WTHR]# %i°%c %s ", temp / 100, tempUnit, Symbols::GetSimpleCondition(optCurrentWeather->iconId));
lv_label_set_text_fmt(weather,
"#ffffff [WTHR]# %i°%c %s ",
temp / 100,
tempUnit,
Symbols::GetSimpleCondition(optCurrentWeather->iconId));
} else {
lv_label_set_text(weather, "#ffffff [WTHR]# ---");
lv_obj_set_style_local_text_color(weather, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::gray);