From 131edf12938868d83dcccde3d82939f46a39b623 Mon Sep 17 00:00:00 2001 From: chfhtw Date: Fri, 17 Apr 2026 11:41:31 +0200 Subject: [PATCH] move check into updateCursor block, it only needs to check if the hovered tile changes --- public/js/components/Drop/Grid.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/js/components/Drop/Grid.js b/public/js/components/Drop/Grid.js index 32918572f..cb622dcfc 100644 --- a/public/js/components/Drop/Grid.js +++ b/public/js/components/Drop/Grid.js @@ -414,8 +414,6 @@ export default { if (!this.active) return this.dragCancel(); - this.checkPinnedWidgetAnimation(); - if (this.updateCursor(evt)) { switch(this.mode) { case MODE_MOVE: { @@ -457,6 +455,7 @@ export default { break; } } + this.checkPinnedWidgetAnimation(); } }, removeWidgetClones() {