Skip to content

Commit b60612c

Browse files
committed
Enable swipe to show widget top bar
1 parent aad797d commit b60612c

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

apps/touchtimer/ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
0.04: Add 5 second count down buzzer
55
0.05: Fix 5 second count down buzzer to be only in the final 5 seconds
66
0.06: Use default Bangle formatter for booleans
7+
0.07: Enable swipe to show widget top bar

apps/touchtimer/app.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ var DEBUG = false;
22
var FILE = "touchtimer.data.json";
33

44
var main = () => {
5+
Bangle.loadWidgets();
6+
require("widget_utils").swipeOn(); // hide widgets, make them visible with a swipe
7+
58
var settings = readSettings();
69

710
var button1 = new Button({ x1: 1, y1: 35, x2: 58, y2: 70 }, 1);

apps/touchtimer/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "touchtimer",
33
"name": "Touch Timer",
44
"shortName": "Touch Timer",
5-
"version": "0.06",
5+
"version": "0.07",
66
"description": "Quickly and easily create a timer with touch-only input. The time can be easily set with a number pad.",
77
"icon": "app.png",
88
"tags": "tools",

0 commit comments

Comments
 (0)