diff --git a/src/displayapp/screens/.Weather.cpp.kate-swp b/src/displayapp/screens/.Weather.cpp.kate-swp deleted file mode 100644 index 0a1a26d2..00000000 Binary files a/src/displayapp/screens/.Weather.cpp.kate-swp and /dev/null differ diff --git a/src/displayapp/screens/Weather.cpp b/src/displayapp/screens/Weather.cpp index 9036d7c1..c99c7545 100644 --- a/src/displayapp/screens/Weather.cpp +++ b/src/displayapp/screens/Weather.cpp @@ -122,7 +122,7 @@ void Weather::Refresh() { int16_t temp = optCurrentWeather->temperature; int16_t minTemp = optCurrentWeather->minTemperature; int16_t maxTemp = optCurrentWeather->maxTemperature; - lv_obj_set_style_local_text_color(temperature, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, TemperatureColor(temp)); + lv_obj_set_style_local_text_color(temperature, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, WeatherHelper::TemperatureColor(temp)); char tempUnit = 'C'; if (settingsController.GetWeatherFormat() == Controllers::Settings::WeatherFormat::Imperial) { temp = Controllers::SimpleWeatherService::CelsiusToFahrenheit(temp);