diff --git a/apps/bwclk/ChangeLog b/apps/bwclk/ChangeLog index ae95e8ae7..5ff1eb90e 100644 --- a/apps/bwclk/ChangeLog +++ b/apps/bwclk/ChangeLog @@ -15,4 +15,5 @@ 0.15: Added option for a dynamic mode to show widgets only if unlocked. 0.16: You can now show your agenda if your calendar is synced with Gadgetbridge. 0.17: Fix - Step count was no more shown in the menu. -0.18: Set timer for an agenda entry by simply clicking in the middle of the screen. Only one timer can be set. \ No newline at end of file +0.18: Set timer for an agenda entry by simply clicking in the middle of the screen. Only one timer can be set. +0.19: Fix - Compatibility with "Digital clock widget" diff --git a/apps/bwclk/app.js b/apps/bwclk/app.js index 8cd81cbd7..a23df6e0d 100644 --- a/apps/bwclk/app.js +++ b/apps/bwclk/app.js @@ -773,6 +773,9 @@ E.on("kill", function(){ // dark/light theme as well as the colors. g.setTheme({bg:g.theme.fg,fg:g.theme.bg, dark:!g.theme.dark}).clear(); +// Show launcher when middle button pressed +Bangle.setUI("clock"); + // Load widgets and draw clock the first time Bangle.loadWidgets(); @@ -782,6 +785,3 @@ for (let wd of WIDGETS) {wd._draw=wd.draw; wd._area=wd.area;} // Draw first time draw(); - -// Show launcher when middle button pressed -Bangle.setUI("clock"); diff --git a/apps/bwclk/metadata.json b/apps/bwclk/metadata.json index 0f9836a42..bc2bb37b6 100644 --- a/apps/bwclk/metadata.json +++ b/apps/bwclk/metadata.json @@ -1,7 +1,7 @@ { "id": "bwclk", "name": "BW Clock", - "version": "0.18", + "version": "0.19", "description": "A very minimalistic clock to mainly show date and time.", "readme": "README.md", "icon": "app.png",