From 5e21efdd6e229879abe8b2d9ef9ffcddbd4959f3 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 04:15:40 +0200 Subject: [PATCH] Increase move threshold for mouse hold in animeCat.js --- animeCat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animeCat.js b/animeCat.js index e667519..64da632 100644 --- a/animeCat.js +++ b/animeCat.js @@ -140,7 +140,7 @@ _bindMouseHold() { let holdTimer = null; const CAT_TOLERANCE = 15; - const MOVE_THRESHOLD = 200; + const MOVE_THRESHOLD = 300; const isMouseNearCat = (e) => { const rect = this.img.getBoundingClientRect();