Question

I use NUI ( https://github.com/tombenner/nui ) and I want to display text in button with certain font and size. Here is my 'css' file:

accessoryButton {
    font-name: GothamSSm-Light;
    font-size: 20;
    font-color: white;
}

And what I get from it (screenshot with blended layers):

damaged text.

And it happens not only with button, I tried the same on UITextField - same result. If I change font-name on Arial, for example, text appears correctly. I've checked that font on test project without NUI, it works fine.

Était-ce utile?

La solution

This has to do with improperly formatted ttf files. the trick is to manually edit the hhea table. Check out this awesome article which explains exactly how to do it:

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top