Don't clear all intervals during initialisation of Large Clock

master
jonathan 2020-11-12 18:53:41 +00:00
parent 633321da77
commit 326eb7b764
3 changed files with 2 additions and 2 deletions

View File

@ -1690,7 +1690,7 @@
"id": "largeclock", "id": "largeclock",
"name": "Large Clock", "name": "Large Clock",
"icon": "largeclock.png", "icon": "largeclock.png",
"version": "0.06", "version": "0.07",
"description": "A readable and informational digital watch, with date, seconds and moon phase", "description": "A readable and informational digital watch, with date, seconds and moon phase",
"readme": "README.md", "readme": "README.md",
"tags": "clock", "tags": "clock",

View File

@ -4,3 +4,4 @@
0.04: Adjust layout to account for new vector font 0.04: Adjust layout to account for new vector font
0.05: Add support for 12 hour time 0.05: Add support for 12 hour time
0.06: Allow to disable BTN1 and BTN3 buttons 0.06: Allow to disable BTN1 and BTN3 buttons
0.07: Don't clear all intervals during initialisation

View File

@ -198,7 +198,6 @@ if (BTN3app) setWatch(
); );
g.clear(); g.clear();
clearInterval();
drawClockFace(); drawClockFace();
interval = setInterval(drawClockFace, REFRESH_RATE); interval = setInterval(drawClockFace, REFRESH_RATE);