score: change default score button assignment

master
Mika Dede 2021-10-10 17:44:03 +02:00
parent 729f5baf16
commit ed9566dbb3
No known key found for this signature in database
GPG Key ID: 546586DC38D45BBD
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ function setupInputWatchers(init) {
Bangle.setUI('updown', v => { Bangle.setUI('updown', v => {
if (v) { if (v) {
if (isBangle1) { if (isBangle1) {
let i = settings.mirrorScoreButtons ? v * -1 : v; let i = settings.mirrorScoreButtons ? v : v * -1;
handleInput(Math.floor((i+2)/2)); handleInput(Math.floor((i+2)/2));
} else { } else {
handleInput(Math.floor((v+2)/2)+3); handleInput(Math.floor((v+2)/2)+3);