From 013967e0666aec12db56e085228a2bcc8f0d57af Mon Sep 17 00:00:00 2001 From: macniel Date: Thu, 12 Mar 2026 19:46:55 +0100 Subject: [PATCH] #74 forces a reposition check on rendering the charactersheet. --- src/module/sheets/characterSheet.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/module/sheets/characterSheet.mjs b/src/module/sheets/characterSheet.mjs index d859c7a2..d6b36946 100644 --- a/src/module/sheets/characterSheet.mjs +++ b/src/module/sheets/characterSheet.mjs @@ -370,6 +370,7 @@ class CharacterSheet extends HandlebarsApplicationMixin(ActorSheetV2) { event.preventDefault() await this.document.update(formData.object) + return false } @@ -733,6 +734,8 @@ class CharacterSheet extends HandlebarsApplicationMixin(ActorSheetV2) { Liturgies._onRender(context, options, this.element) Skills._onRender(context, options, this.element) Spells._onRender(context, options, this.element) + + this._onPosition(this.position) } async _canDragDrop() {