Reduce timeout to prevent accidental saves

master
stweedo 2023-06-17 17:00:52 -05:00
parent a862fdd567
commit a23a24c67a
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@
}
doubleTapTimer = setTimeout(() => {
doubleTapTimer = null;
}, 1000); // Increase or decrease this value based on the desired double tap timing
}, 500); // Increase or decrease this value based on the desired double tap timing
movementDistance = 0;
};