From 8d89334c4de6162de928d6ac304ec17f790663dd Mon Sep 17 00:00:00 2001 From: msdeibel Date: Thu, 9 Apr 2020 08:35:11 +0200 Subject: [PATCH] Small fixes --- apps/batchart/app.js | 2 ++ apps/batchart/widget.js | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/batchart/app.js b/apps/batchart/app.js index c82b15737..684f9a88d 100644 --- a/apps/batchart/app.js +++ b/apps/batchart/app.js @@ -27,6 +27,8 @@ Bangle.on('lcdPower', (on) => { }); g.clear(); +Bangle.loadWidgets(); +Bangle.drawWidgets(); // call your app function here renderBatteryChart(); diff --git a/apps/batchart/widget.js b/apps/batchart/widget.js index 48c54426b..b002da5d9 100644 --- a/apps/batchart/widget.js +++ b/apps/batchart/widget.js @@ -16,7 +16,6 @@ // draw your widget function draw() { - if (!settings.isRecording) return; g.reset(); g.drawString("BC", this.x, this.y); }