Skip to content

Commit

Permalink
Bugfix to time zone select logic in onTouch()
Browse files Browse the repository at this point in the history
  • Loading branch information
dgnuff committed Oct 8, 2023
1 parent a54708a commit bf9687b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/travelwatch/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ function onTouch(button, xy)
{
if (++zoneIndex >= zones.length)
{
zoneIndex = 1;
zoneIndex = 0;
}
} while (zoneIndex == watchIndex);
clearTimeout(drawTimeout);
Expand Down
2 changes: 1 addition & 1 deletion apps/travelwatch/metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ "id": "travelwatch",

Check warning on line 1 in apps/travelwatch/metadata.json

View workflow job for this annotation

GitHub Actions / build

App travelwatch has no ChangeLog
"name": "Travel Watch",
"icon": "app.png",
"version":"1.16",
"version":"1.17",
"description": "Watch face that shows world wide time for travelers",
"tags": "clock",
"type": "clock",
Expand Down

0 comments on commit bf9687b

Please sign in to comment.