Sfoglia il codice sorgente

Allow 60 touchmove drags per second

master
Fen Dweller 5 anni fa
parent
commit
85839b0927
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      macrovision.js

+ 1
- 1
macrovision.js Vedi File

@@ -3295,7 +3295,7 @@ document.addEventListener("touchmove", (e) => {
panOffsetY = e.touches[0].clientY;
updateSizes();
panReady = false;
setTimeout(() => panReady=true, 50);
setTimeout(() => panReady=true, 1000/60);
}
}, { passive: false });



Loading…
Annulla
Salva