diff --git a/CHANGELOG.md b/CHANGELOG.md index 74d0e6705..8f213f0f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file. bitmap fills or frame duration - [#2341] FLA export - linkage and imported fonts did not work correctly - [#2345] items smaller than 20 twips were not drawn - caused PDF problems - now ceil is used +- [#2341] FLA export - DefineEditText - use its default text color on HTML enabled inputs ## [21.1.1] - 2024-10-13 ### Added diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java index fcfeaf0d8..24136e732 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java @@ -5585,6 +5585,10 @@ public class XFLConverter { alignment = "unknown"; } } + if (det.hasTextColor) { + color = det.textColor.toHexRGB(); + } + this.chatacterTags = characterTags; this.characterImportLinkageURL = characterImportLinkageURL; this.lastImportedId = lastImportedId;