View Full Version : Controlling the Minimum Width of the Party Sheet
Blackfoot
March 21st, 2025, 13:01
It's eluding me.. I'm not finding where I can control the minimum width of the Party Sheet.
My MAIN tab looks perfect, but the Skills can get too small and clips the skill data.
How can I force the minimum width?
LordEntrails
March 21st, 2025, 16:06
Add this to the window definition
<sizelimits resize="both">
<minimum width="218" />
</sizelimits>
Blackfoot
March 21st, 2025, 18:01
Its definitely already being set SOMEWHERE.. I just can't find it.
LordEntrails
March 21st, 2025, 18:13
I've only got a CoreRPG from last December extracted. But first look would make me think here: ps/ps.xml
<root>
<windowclass name="partysheet">
<frame>partysheet</frame>
<sizelimits>
<minimum width="840" height="650" />
<dynamic />
</sizelimits>
<softclose />
<helplinkres>help_tool_ps</helplinkres>
<script>
function onInit()
WindowTabManager.populate(self);
end
</script>
...
Moon Wizard
March 21st, 2025, 18:14
From CoreRPG:
<windowclass name="partysheet">
<frame>partysheet</frame>
<sizelimits>
<minimum width="840" height="650" />
<dynamic />
</sizelimits>
...
</windowclass>
<windowclass name="partysheet_host" copy="partysheet" />
<windowclass name="partysheet_client" copy="partysheet" />
To override in a ruleset or extension:
<windowclass name="partysheet_host" merge="join">
<sizelimits>
<minimum width="940" height="650" />
<dynamic />
</sizelimits>
</windowclass>
Regards,
JPG
LordEntrails
March 21st, 2025, 18:14
If you are in another ruleset, it might be calling the windowclass in use from corerpg/ps/template_ps.xml as well.
Would need details of exactly what ruleset and what window class you are trying to control.
Blackfoot
March 21st, 2025, 18:26
Thanks guys.
Powered by vBulletin® Version 4.2.1 Copyright © 2026 vBulletin Solutions, Inc. All rights reserved.