From b30f6c07b9530e213d2d6a8d9711e263cedf19e0 Mon Sep 17 00:00:00 2001 From: JustScott Date: Thu, 3 Oct 2024 14:28:49 -0500 Subject: [PATCH] Fix code formatting with 'clang-format' --- src/displayapp/screens/WatchFaceTerminal.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/displayapp/screens/WatchFaceTerminal.cpp b/src/displayapp/screens/WatchFaceTerminal.cpp index 870459bf..80445d83 100644 --- a/src/displayapp/screens/WatchFaceTerminal.cpp +++ b/src/displayapp/screens/WatchFaceTerminal.cpp @@ -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);