diff --git a/src/gui/weather.h b/src/gui/weather.h index fbe39040e..4f5d69013 100644 --- a/src/gui/weather.h +++ b/src/gui/weather.h @@ -67,11 +67,11 @@ class CWeather void hide(); std::string getActTemp() { - return to_string((int)(act_temp + 0.5)) + "°C"; + return to_string((int)(act_temp + 0.5)); }; std::string getForecastTemp(int i = 0) { - return to_string((int)(v_forecast[i].max_temp + 0.5)) + "°C"; + return to_string((int)(v_forecast[i].max_temp + 0.5)); }; std::string getActIcon() {