Fix position of temperature

pull/2194/head
Marco H 2022-10-25 08:45:37 +02:00 committed by Marco Heiming
parent e0d86d60d8
commit e553463fab
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ function draw() {
const weather = getWeather();
const tempString = weather ? locale.temp(weather.temp - 273.15) : undefined;
g.setFontAlign(1, 0);
if (tempString) g.drawString(tempString, w, h2 + dowOffset);
if (tempString) g.drawString(tempString, w, h2);
const code = weather ? weather.code : -1;
if (code > -1) {