diff --git a/apps.json b/apps.json index 8beaee6f1..54b15d970 100644 --- a/apps.json +++ b/apps.json @@ -3615,7 +3615,7 @@ }, { "id": "stopwatch", "name": "Stopwatch Touch", - "shortName":"Stopwatch", + "shortName":"Stopwatch Touch", "icon": "stopwatch.png", "version":"0.01", "description": "A touch controlled stopwatch for Bangle 2", diff --git a/apps/stopwatch/stopwatch.app.js b/apps/stopwatch/stopwatch.app.js index 80fa7902e..1d6791b57 100644 --- a/apps/stopwatch/stopwatch.app.js +++ b/apps/stopwatch/stopwatch.app.js @@ -30,7 +30,7 @@ function timeToText(t) { if (hrs === 0) text = ("0"+mins).substr(-2) + ":" + ("0"+secs).substr(-2) + "." + tnth; else - text = (""+hrs) + ":" + ("0"+mins).substr(-2) + ":" + ("0"+secs).substr(-2) + "." + tnth; + text = ("0"+hrs) + ":" + ("0"+mins).substr(-2) + ":" + ("0"+secs).substr(-2); //log_debug(text); return text;