Merge pull request #2290 from Rarder44/rebble-fix

[Rebble] fix draw before widget hide
pull/2303/head
Gordon Williams 2022-11-21 09:30:32 +00:00 committed by GitHub
commit abd2aaea02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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",

View File

@ -347,8 +347,8 @@ Graphics.prototype.setFontKdamThmor = function(scale) {
Bangle.loadWidgets();
draw();
require("widget_utils").hide();
draw();
}