Skip to content

Commit

Permalink
Fixed: #2341 FLA export - DefineEditText - use its default text color…
Browse files Browse the repository at this point in the history
… on HTML enabled inputs
  • Loading branch information
jindrapetrik committed Oct 21, 2024
1 parent 3bbe38e commit 7d89dc0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5585,6 +5585,10 @@ public HTMLTextParser(
alignment = "unknown";
}
}
if (det.hasTextColor) {
color = det.textColor.toHexRGB();
}

this.chatacterTags = characterTags;
this.characterImportLinkageURL = characterImportLinkageURL;
this.lastImportedId = lastImportedId;
Expand Down

0 comments on commit 7d89dc0

Please sign in to comment.