From 94568a11e15aa86496d27eac7f5c0f14e8e1a82e Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 04:31:55 +0200 Subject: [PATCH] Increase move threshold for mouse hold detection in animeCat.js --- animeCat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animeCat.js b/animeCat.js index 0e1def0..8b54a96 100644 --- a/animeCat.js +++ b/animeCat.js @@ -144,7 +144,7 @@ _bindMouseHold() { let moveDist = 0; // <---- NEU! const CAT_TOLERANCE = 15; - const MOVE_THRESHOLD = 300; + const MOVE_THRESHOLD = 350; const isMouseNearCat = (e) => { const rect = this.img.getBoundingClientRect();