mirror of https://github.com/espruino/BangleApps
Merge pull request #3450 from paul-arg/vpw_clock
VPW clock: do not remove VGA8 font for fast loadingpull/3452/head
commit
fd7ea9a587
|
@ -3,3 +3,4 @@
|
|||
0.03: Set theme to light, add black as an option for foreground color
|
||||
0.04: Handle fast loading
|
||||
0.05: Fix theme reset for some themes
|
||||
0.06: Minor fix: do not remove VGA8 font
|
||||
|
|
|
@ -167,7 +167,6 @@ Graphics.prototype.setFontMadeSunflower = function () {
|
|||
if (drawTimeout) clearTimeout(drawTimeout);
|
||||
// remove custom font
|
||||
delete Graphics.prototype.setFontMadeSunflower;
|
||||
delete Graphics.prototype.setFontVGA8;
|
||||
// revert theme to how it was before
|
||||
g.setTheme(originalTheme);
|
||||
}
|
||||
|
@ -176,4 +175,4 @@ Graphics.prototype.setFontMadeSunflower = function () {
|
|||
// Load widgets
|
||||
Bangle.loadWidgets();
|
||||
Bangle.drawWidgets();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Vaporwave Sunset Clock",
|
||||
"shortName": "Vaporwave Sunset",
|
||||
"type": "clock",
|
||||
"version":"0.05",
|
||||
"version":"0.06",
|
||||
"description": "A clock with a vaporwave sunset theme.",
|
||||
"tags": "clock",
|
||||
"supports": ["BANGLEJS2"],
|
||||
|
|
Loading…
Reference in New Issue