rest: Increased max rest time from 120s to 600s
parent
f8cc620c02
commit
5373d6280c
|
|
@ -232,11 +232,11 @@ const onTouchPerQuadrantPerMode = {
|
|||
SET_REST: [
|
||||
[MAIN_MENU, Bangle.buzz], [null, null],
|
||||
[null, () => {
|
||||
restSeconds = Math.min(120, Math.max(0, restSeconds - 15));
|
||||
restSeconds = Math.min(600, Math.max(0, restSeconds - 15));
|
||||
Bangle.buzz(100);
|
||||
}],
|
||||
[null, () => {
|
||||
restSeconds = Math.min(120, Math.max(0, restSeconds + 15));
|
||||
restSeconds = Math.min(600, Math.max(0, restSeconds + 15));
|
||||
Bangle.buzz(100);
|
||||
}],
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in New Issue