forked from FOSS/BangleApps
fix draw before widget hide
parent
aaa602b674
commit
6e16c5fc4f
|
@ -11,4 +11,5 @@
|
|||
0.11: fix issue https://github.com/espruino/BangleApps/issues/2128 (#2128) ( settings undefined )
|
||||
0.12: implemented widget_utils
|
||||
0.13: convert var/function into let
|
||||
0.14: cleanup code and fix fastload issue
|
||||
0.14: cleanup code and fix fastload issue
|
||||
0.15: fix draw before widget hide
|
|
@ -2,7 +2,7 @@
|
|||
"id": "rebble",
|
||||
"name": "Rebble Clock",
|
||||
"shortName": "Rebble",
|
||||
"version": "0.14",
|
||||
"version": "0.15",
|
||||
"description": "A Pebble style clock, with configurable background, three sidebars including steps, day, date, sunrise, sunset, long live the rebellion",
|
||||
"readme": "README.md",
|
||||
"icon": "rebble.png",
|
||||
|
|
|
@ -347,8 +347,8 @@ Graphics.prototype.setFontKdamThmor = function(scale) {
|
|||
|
||||
|
||||
Bangle.loadWidgets();
|
||||
draw();
|
||||
require("widget_utils").hide();
|
||||
draw();
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue