From c9d0a199477bf6c6b39a852c73d71fca666adda2 Mon Sep 17 00:00:00 2001 From: Marco H Date: Mon, 29 Nov 2021 10:40:32 +0100 Subject: [PATCH] Add space after temperature value Add space after temperature value --- apps/thermom/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/thermom/app.js b/apps/thermom/app.js index 971ce8f56..7eae9b3d4 100644 --- a/apps/thermom/app.js +++ b/apps/thermom/app.js @@ -5,7 +5,7 @@ function onTemperature(p) { var y = g.getHeight()/2 + 10; g.drawString("Temperature:", x, y - 45); g.setFontVector(70).setFontAlign(0,0); - g.drawString(p.temperature.toFixed(1) + "°C", x, y); + g.drawString(p.temperature.toFixed(1) + " °C", x, y); } function drawTemperature() {