From 2165941e1b80a7cc9579a1cc9a546f45a77c49c5 Mon Sep 17 00:00:00 2001 From: David Peer Date: Sun, 8 Jan 2023 16:55:37 +0100 Subject: [PATCH] Minor changes --- apps/bwclk/app.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/bwclk/app.js b/apps/bwclk/app.js index 10dbe618b..a632121c4 100644 --- a/apps/bwclk/app.js +++ b/apps/bwclk/app.js @@ -155,7 +155,8 @@ let clockInfoMenu = clock_info.addInteractive(clockInfoItems, { // Set text and font if(isLarge){ // In case we are in focus and the focus box changes (fullscreen yes/no) - // we draw the time again. + // we draw the time again. Otherwise it could happen that a while line is + // not cleared correctly. if(options.focus) drawTime(); return; } @@ -181,7 +182,8 @@ let clockInfoMenu = clock_info.addInteractive(clockInfoItems, { g.drawString(text, midx+parseInt(imgWidth*1.3/2), options.y+20); // In case we are in focus and the focus box changes (fullscreen yes/no) - // we draw the time again. + // we draw the time again. Otherwise it could happen that a while line is + // not cleared correctly. if(options.focus) drawTime(); } });