Yanfly Status Menu adjust widths

● ARCHIVED · READ-ONLY
Started by Kes 5 posts View original ↗
  1. I am using Yanfly's Status Menu, and with several fonts I have the problem shown in the image below on the Properties page.
    Capture.PNG

    As you can see, the left edge of the numerals is shaved off, and where it isn't (for 100%) the one looks squashed.
    I am assuming that this could be rectified if that section of the window were drawn a couple of pixels wider. However, I don't know how/where to mod the script to allow that.

    Could anyone help me out?
    Thanks.
  2. @TheoAllen That almost does it. It solves the clipping on the 9 and the zeros. However, it still leaves the 100% looking odd.
    Capture2.PNG
    Any thoughts about how that might be sorted?
  3. @Kes
    Oh, you actually just asked about this.
    That's a funny coincidence. I sent you info regarding a fix to this specific bug. ^^
  4. @Zeriab Is that on UUG? I'm on my phone right now so I'll check when I get back.

    EDIT
    And it is a simple fix.

    For the benefit of anyone else who wants this without having to include another script, go to line 682 of the Status Menu script.
    In the original it reads
    fmt = "%1.2f%%"
    Put a space between the " and the % so that it reads
    fmt = " %1.2f%%

    That's all that's needed.