Long schematic names don't rendre entirely in the work order
mcmanustfj opened this issue ยท 3 comments
Is there an existing issue for this?
- I have searched the existing issues
Are you using the latest MineColonies Verison?
- I am running the latest alpha version of MineColonies for my Minecraft version.
Did you check on the Wiki? or ask on Discord?
- I checked the MineColonies Wiki and made sure my issue is not covered there. Or I was sent from discord to open an issue here.
Minecraft Version
1.18
MineColonies Version
Structurize Version
.347
Related Mods and their Versions
x
Current Behavior
Long schematic names get cut off in the work order view in the TH
Expected Behavior
"deliveryman2"
Reproduction Steps
make a lumberjack or deliveryman schematic
Logs
x
Anything else?
- Add a thumbs-up to the bug report if you are also affected. This helps the bug report become more visible to the team and doesn't clutter the comments.
- Add a comment if you have any insights or background information that isn't already part of the conversation.
It's structurize version 0.347, and it's MineColonies built from source as of #8112
Note that even in this new system I provided here this is still an issue, it's a limitation of the AbstractTextElement
.
This class provides wrapping options to make text render on newlines if possible but there's no overflow options to it,
when text is too long to fit it's wrapped by the first whitespace and the rest is simply not shown.
The PR for the new work order "fixes" this by adding a tooltip to it but a long term solution would be to make the AbstractTextElement
capable of text overflow.