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

@@ -54,6 +54,7 @@ All notable changes to this project will be documented in this file.
- [#2112] GFX - new image types in DefineExternalImage
- [#1193] FLA export - DefineEditText position and size
- FLA export - allow float frame rate
- FLA export - font export - allow dot as character
### Changed
- Basic tag info panel always visible even when nothing to display (to avoid flickering)

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;