diff --git a/apps/rebble/ChangeLog b/apps/rebble/ChangeLog index 7255b1785..c009a4ec1 100644 --- a/apps/rebble/ChangeLog +++ b/apps/rebble/ChangeLog @@ -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 \ No newline at end of file +0.14: cleanup code and fix fastload issue +0.15: fix draw before widget hide \ No newline at end of file diff --git a/apps/rebble/metadata.json b/apps/rebble/metadata.json index 9a746a0f9..7042fcb95 100644 --- a/apps/rebble/metadata.json +++ b/apps/rebble/metadata.json @@ -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", diff --git a/apps/rebble/rebble.app.js b/apps/rebble/rebble.app.js index ef75bbb21..fd0c8f7f9 100644 --- a/apps/rebble/rebble.app.js +++ b/apps/rebble/rebble.app.js @@ -347,8 +347,8 @@ Graphics.prototype.setFontKdamThmor = function(scale) { Bangle.loadWidgets(); - draw(); require("widget_utils").hide(); + draw(); }