diff --git a/modules/ClockFace.js b/modules/ClockFace.js index f8dc33287..25b278846 100644 --- a/modules/ClockFace.js +++ b/modules/ClockFace.js @@ -19,7 +19,7 @@ function ClockFace(options) { options.update.apply(this, [t, {d: true, h: true, m: true, s: true}]); }); this.update = options.update || (t => { - g.clear(); + g.clearRect(Bangle.appRect); options.draw.apply(this, [t, {d: true, h: true, m: true, s: true}]); }); if (options.precision===1000||options.precision===60000) throw "ClockFace precision is in seconds, not ms"; @@ -108,7 +108,7 @@ ClockFace.prototype.resume = function() { delete this._last; this.paused = false; if (this._resume) this._resume.apply(this); - this.tick(true); + this.tick(); }; /**