From d0434ed495ecb7af5b42c69ffd70368c782636b9 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Sat, 27 Jun 2020 00:38:27 +0200 Subject: [PATCH] - glcd: better position for forcast temperature Signed-off-by: Thilo Graf --- src/driver/glcd/weather.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/glcd/weather.cpp b/src/driver/glcd/weather.cpp index 21a0cade7..cb17865f8 100644 --- a/src/driver/glcd/weather.cpp +++ b/src/driver/glcd/weather.cpp @@ -239,7 +239,7 @@ void RenderWeather(int cx, int cy, int nx, int ny, bool standby) if (next_wtemp != "") { next_wtemp += "°"; WeatherUpdateFonts(); - cglcd->bitmap->DrawText(270, 240, cglcd->bitmap->Width() - 1, next_wtemp, + cglcd->bitmap->DrawText(250, 240, cglcd->bitmap->Width() - 1, next_wtemp, &font_temperature, cglcd->ColorConvert3to1(t.glcd_color_fg_red, t.glcd_color_fg_green, t.glcd_color_fg_blue), GLCD::cColor::Transparent); } }