mirror of https://github.com/espruino/BangleApps
Merge pull request #2968 from matijatosic/hwid
Fix hwid_a_battery_widget background colorpull/2971/head
commit
4d4d9aa0f4
|
@ -7,3 +7,4 @@
|
||||||
0.07: Fixed position after unlocking
|
0.07: Fixed position after unlocking
|
||||||
0.08: Handling exceptions
|
0.08: Handling exceptions
|
||||||
0.09: Add option for showing battery high mark
|
0.09: Add option for showing battery high mark
|
||||||
|
0.10: Fix background color
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"name": "A Battery Widget (with percentage) - Hanks Mod",
|
"name": "A Battery Widget (with percentage) - Hanks Mod",
|
||||||
"shortName":"H Battery Widget",
|
"shortName":"H Battery Widget",
|
||||||
"icon": "widget.png",
|
"icon": "widget.png",
|
||||||
"version":"0.09",
|
"version":"0.10",
|
||||||
"type": "widget",
|
"type": "widget",
|
||||||
"supports": ["BANGLEJS", "BANGLEJS2"],
|
"supports": ["BANGLEJS", "BANGLEJS2"],
|
||||||
"readme": "README.md",
|
"readme": "README.md",
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
var y = this.y;
|
var y = this.y;
|
||||||
if ((typeof x === 'undefined') || (typeof y === 'undefined')) {
|
if ((typeof x === 'undefined') || (typeof y === 'undefined')) {
|
||||||
} else {
|
} else {
|
||||||
|
g.setBgColor(COLORS.white);
|
||||||
g.clearRect(old_x, old_y, old_x + width, old_y + height);
|
g.clearRect(old_x, old_y, old_x + width, old_y + height);
|
||||||
|
|
||||||
const l = E.getBattery(); // debug: Math.floor(Math.random() * 101);
|
const l = E.getBattery(); // debug: Math.floor(Math.random() * 101);
|
||||||
|
|
Loading…
Reference in New Issue