Fixing other uses of dragDrop to handle the layout change

This commit is contained in:
nsalyzyn 2025-12-18 17:30:28 -07:00
parent c3cb8961a3
commit d66ae73901
6 changed files with 20 additions and 6 deletions

View file

@ -36,6 +36,7 @@ export default class DHBaseActorSheet extends DHApplicationMixin(ActorSheetV2) {
],
dragDrop: [
{ dragSelector: '.inventory-item[data-type="attack"]', dropSelector: null },
{ dragSelector: '.inventory-item[data-type="attack"] [draggable="true"]', dropSelector: null },
{ dragSelector: ".currency[data-currency] .drag-handle", dropSelector: null }
]
};
@ -374,4 +375,4 @@ export default class DHBaseActorSheet extends DHApplicationMixin(ActorSheetV2) {
super._onDragStart(event);
}
}
}