From 9a82a2e1eef6e55d03fe8b13626f954d20851a20 Mon Sep 17 00:00:00 2001 From: Felipe Manga Date: Mon, 15 Jan 2024 17:43:05 +0000 Subject: [PATCH] Ensure text is drawn with a black background --- apps/warpdrive/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/warpdrive/app.js b/apps/warpdrive/app.js index 9559de693..d3404276d 100644 --- a/apps/warpdrive/app.js +++ b/apps/warpdrive/app.js @@ -615,6 +615,7 @@ function tick(widgets) { m = d.getMinutes(); var time = (" " + h).substr(-2) + ":" + m.toString().padStart(2, 0); WHITE() + .setBgColor(0) .setFontAlign(0, 0.5) .setFont('6x8', 2) .drawString(time, 176 / 2, 176 - 16, true);