From b418a0c2c5c448c24441aa059fcb16d6cdef94b1 Mon Sep 17 00:00:00 2001 From: U~man Date: Mon, 13 Jul 2020 19:35:38 +0200 Subject: [PATCH] FIX: resizable on every sheets --- src/module/actor/actor-sheet.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/module/actor/actor-sheet.js b/src/module/actor/actor-sheet.js index 5921178..2172032 100644 --- a/src/module/actor/actor-sheet.js +++ b/src/module/actor/actor-sheet.js @@ -193,7 +193,8 @@ export class OseActorSheet extends ActorSheet { async _onResize(event) { super._onResize(event); - let html = $(event.path); + + let html = $(this.form); let resizable = html.find(".resizable"); if (resizable.length == 0) { return; @@ -212,7 +213,6 @@ export class OseActorSheet extends ActorSheet { editor.style.height = `${heightDelta + parseInt(container.dataset.editorSize)}px`; } }) - // editors.css("height", this.position.height - 340); } _onConfigureActor(event) {