mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-01 06:05:25 +00:00
Fixed FLA export - font export - allow dot as character
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user