diff --git a/web.py b/web.py index 9b8db92..73f2bfc 100644 --- a/web.py +++ b/web.py @@ -925,7 +925,7 @@ document.addEventListener('keydown', e => { const cur = audio.currentTime; let jumped = false; for (let i = 0; i < sections.length; i++) { - if (sections[i].start > cur + 0.5) { + if (sections[i].start > cur + preroll) { const s = sections[i]; audio.currentTime = Math.max(0, s.start - preroll); setCutFields(activePlayerIdx, s.start, s.end);