Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/widadjust/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
0.02: Use default Bangle formatter for booleans
0.03: Add option to hide widget
0.04: Add auto-adjust app
0.05: Fix auto-adjust text display
2 changes: 1 addition & 1 deletion apps/widadjust/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "widadjust",
"name": "Adjust Clock",
"icon": "icon.png",
"version": "0.04",
"version": "0.05",
"description": "Adjusts clock continually in the background to counter clock drift",
"tags": "widget",
"supports": [ "BANGLEJS", "BANGLEJS2" ],
Expand Down
7 changes: 2 additions & 5 deletions apps/widadjust/widadjust.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,11 +234,8 @@ function on_gps(fix) {

msg += "\n" + updateTime(fix, now);

g.reset().clear().setFont("Vector", 31)
.setColor(1,1,1)
.fillRect(0, 24, 176, 100)
.setColor(0,0,0)
.drawString(msg, 3, 25);
g.reset().clear().setFont("Vector", 20)
.drawString(msg, 3, 3);
}

fmt.init();
Expand Down
Loading