From e553463fab186b13a947e822d7ad62732cd5271d Mon Sep 17 00:00:00 2001 From: Marco H Date: Tue, 25 Oct 2022 08:45:37 +0200 Subject: [PATCH] Fix position of temperature --- apps/circlesclock/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/circlesclock/app.js b/apps/circlesclock/app.js index 1554b24ba..7cd2ad0ec 100644 --- a/apps/circlesclock/app.js +++ b/apps/circlesclock/app.js @@ -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) {