From 85839b0927a7e5546c1b18b89e3c6bb8b1be2377 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 23 Jun 2020 10:49:11 -0400 Subject: [PATCH] Allow 60 touchmove drags per second --- macrovision.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macrovision.js b/macrovision.js index a11965ea..f7d00206 100644 --- a/macrovision.js +++ b/macrovision.js @@ -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 });