diff --git a/apps/iconlaunch/ChangeLog b/apps/iconlaunch/ChangeLog index bc5c09c62..6106f2564 100644 --- a/apps/iconlaunch/ChangeLog +++ b/apps/iconlaunch/ChangeLog @@ -15,3 +15,4 @@ 0.11: Cleanup timeout when changing to clock Reset timeout on swipe and drag 0.12: Use Bangle.load and Bangle.showClock +0.13: Fix automatic switch to clock diff --git a/apps/iconlaunch/app.js b/apps/iconlaunch/app.js index ee3d8e313..3b67b6020 100644 --- a/apps/iconlaunch/app.js +++ b/apps/iconlaunch/app.js @@ -198,7 +198,7 @@ if (settings.timeOut!="Off"){ let time=parseInt(settings.timeOut); //the "s" will be trimmed by the parseInt if (timeout) clearTimeout(timeout); - timeout = setTimeout(returnToClock,time*1000); + timeout = setTimeout(Bangle.showClock,time*1000); } }; diff --git a/apps/iconlaunch/metadata.json b/apps/iconlaunch/metadata.json index 78281a0c9..fba5888a2 100644 --- a/apps/iconlaunch/metadata.json +++ b/apps/iconlaunch/metadata.json @@ -2,7 +2,7 @@ "id": "iconlaunch", "name": "Icon Launcher", "shortName" : "Icon launcher", - "version": "0.12", + "version": "0.13", "icon": "app.png", "description": "A launcher inspired by smartphones, with an icon-only scrollable menu.", "tags": "tool,system,launcher",