Merge pull request #589 from jjok/allow-widgets-with-large-clock

Don't clear all intervals during initialisation of Large Clock
master
Gordon Williams 2020-11-13 08:05:36 +00:00 committed by GitHub
commit 0d97fa79d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 2 deletions

View File

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

View File

@ -4,3 +4,4 @@
0.04: Adjust layout to account for new vector font
0.05: Add support for 12 hour time
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();
clearInterval();
drawClockFace();
interval = setInterval(drawClockFace, REFRESH_RATE);