From 3692f0e1b9136f252f1a2d043554b8dc2bc5e72b Mon Sep 17 00:00:00 2001 From: thyttan <6uuxstm66@mozmail.com⁩> Date: Sat, 18 Feb 2023 22:39:36 +0100 Subject: [PATCH] add a comment, remove a print-statement --- apps/run/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/run/app.js b/apps/run/app.js index 91a1dce50..2c12aaa3f 100644 --- a/apps/run/app.js +++ b/apps/run/app.js @@ -157,7 +157,6 @@ function run() { // We always call ourselves once a second to update if (!runInterval){ runInterval = setInterval(function() { - print(runInterval); layout.clock.label = locale.time(new Date(),1); if (!isMenuDisplayed && !karvonnenActive) layout.render(); }, 1000); @@ -171,6 +170,7 @@ run(); // Korvonnen pasted inside a function function karvonnen() { + // stop updating and drawing the traditional run app UI clearInterval(runInterval); runInterval = undefined; karvonnenActive = true;