Skip to content

Commit dfde5c8

Browse files
authored
Update crsclock.js
1 parent cdaea15 commit dfde5c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/crsclock/crsclock.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ function calibrateBT() {
610610
Bangle.setUI(uiOpts);
611611
});
612612
})(d);
613-
m["" + d + "h"] = (() => () => {
613+
m["-" + d + "h"] = (() => () => {
614614
S.phaseOffset -= d;
615615
saveSettings();
616616
E.showAlert("Offset now: " + (S.phaseOffset>=0? "+"+S.phaseOffset : S.phaseOffset) + "h").then(() => {
@@ -711,7 +711,7 @@ function setBioTimeReference() {
711711
E.showMenu(m);
712712

713713
function promptRefTime() {
714-
E.showPrompt("Hour (023)?").then(h => {
714+
E.showPrompt("Hour (0-23)?").then(h => {
715715
if (h===undefined || h<0 || h>23) {
716716
E.showAlert("Invalid hour").then(() => {
717717
drawClock();
@@ -720,7 +720,7 @@ function setBioTimeReference() {
720720
return;
721721
}
722722
S.bioTimeRefHour = h;
723-
E.showPrompt("Minute (059)?").then(m => {
723+
E.showPrompt("Minute (0-59)?").then(m => {
724724
if (m===undefined || m<0 || m>59) {
725725
E.showAlert("Invalid minute").then(() => {
726726
drawClock();

0 commit comments

Comments
 (0)