From 017db15c22f9dd6d85f1f00d12295a07809012fb Mon Sep 17 00:00:00 2001 From: nsalyzyn Date: Fri, 19 Dec 2025 07:46:23 -0700 Subject: [PATCH] Switching to the less pretty version of the drag drop in case of currency problems --- module/applications/sheets/api/application-mixin.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/applications/sheets/api/application-mixin.mjs b/module/applications/sheets/api/application-mixin.mjs index 2ae6e9cf..f8d9d239 100644 --- a/module/applications/sheets/api/application-mixin.mjs +++ b/module/applications/sheets/api/application-mixin.mjs @@ -385,8 +385,8 @@ export default function DHApplicationMixin(Base) { fromInternal: this.document.uuid }; event.dataTransfer.setData('text/plain', JSON.stringify(effectData)); + event.dataTransfer.setDragImage(inventoryItem.querySelector('img'), 60, 0); } - event.dataTransfer.setDragImage(inventoryItem.querySelector('img'), 60, 0); } }