1
0
Fork 0

more testing to get app back running

master
Sebastian Di Luzio 2021-12-10 22:32:36 +01:00
parent d255d42a8c
commit 0ece5ccdb0
3 changed files with 3 additions and 3 deletions

View File

@ -4782,7 +4782,7 @@
"name": "Charging Status",
"shortName":"ChargingStatus",
"icon": "widget.png",
"version":"0.2",
"version":"0.3",
"type": "widget",
"description": "A simple widget that shows a yellow lightning icon to indicate whenever the watch is charging. This way one can see the charging status at a glance, no matter which battery widget is being used.",
"tags": "widget",

View File

@ -13,7 +13,7 @@
WIDGETS.chargingStatus = {
area: 'tr',
width: Bangle.isCharging() ? iconWidth : 0,
draw,
draw: draw,
};
Bangle.on('charging', (charging) => {
const widget = WIDGETS.chargingStatus;

View File

@ -19,7 +19,7 @@
WIDGETS.chargingStatus = {
area: 'tr',
width: Bangle.isCharging() ? iconWidth : 0,
draw,
draw: draw,
};
Bangle.on('charging', (charging) => {