Fixed FLA export - font export - allow dot as character

This commit is contained in:
Jindra Petřík
2023-11-05 15:27:15 +01:00
parent 632f2b4643
commit e4486fcbcd
2 changed files with 1 additions and 1 deletions

View File

@@ -2743,7 +2743,6 @@ public class XFLConverter {
}
String embeddedCharacters = fontChars;
embeddedCharacters = embeddedCharacters.replace("\u00A0", ""); // nonbreak space
embeddedCharacters = embeddedCharacters.replace(".", ""); // todo: honfika: why?
for (char i = 0; i < 32; i++) {
if (i == 9 || i == 10 || i == 13) {
continue;