diff --git a/apps/dutchclock/ChangeLog b/apps/dutchclock/ChangeLog index 381e421e57..8efcb9edb3 100644 --- a/apps/dutchclock/ChangeLog +++ b/apps/dutchclock/ChangeLog @@ -1,9 +1 @@ -0.12: First release -0.13: Fix widgets reappearing -0.14: Fix midnight -0.15: Fix midnight better -0.16: Fix midnight decisively -0.17: Get loadWidgets back in the right place -0.18: Move setUI and loadWidgets to initialize function -0.19: Make compatible with top and bottom widgets -0.20: Remove unused constant \ No newline at end of file +0.20: First release \ No newline at end of file diff --git a/apps/dutchclock/app.js b/apps/dutchclock/app.js index f970b572fc..588692a2bd 100644 --- a/apps/dutchclock/app.js +++ b/apps/dutchclock/app.js @@ -63,8 +63,8 @@ function initialize() { // now check every second let secondInterval = setInterval(tick, 1000); - // Stop updates when LCD is off, restart when on + // Stop updates when LCD is off, restart when on Bangle.on('lcdPower',on=>{ if (secondInterval) clearInterval(secondInterval); secondInterval = undefined;