You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I'm using your app to create a font, but found it useful only in English, since it won't display basic diacritics.
A quick solution I've found is changing this function:
private string[] GenerateChars()
{
var minChar = CharHelper.ConvertToChar(MinChar);
var maxChar = CharHelper.ConvertToChar(MaxChar);
return CharHelper.GetChars(minChar, maxChar);
}
To use 255 instead of maxChar.
Of course it's sub-optimal since it prints many non-printable characters, and if a glyph is not found in the current font uses the previous selected font.
Would you consider support for non-english glyphs?
The text was updated successfully, but these errors were encountered:
Hello, I'm using your app to create a font, but found it useful only in English, since it won't display basic diacritics.
A quick solution I've found is changing this function:
To use 255 instead of maxChar.
Of course it's sub-optimal since it prints many non-printable characters, and if a glyph is not found in the current font uses the previous selected font.
Would you consider support for non-english glyphs?
The text was updated successfully, but these errors were encountered: