text: Default text span color should be black

Previosuly color defaulted to 0% alpha, causing text to be
invisible if the text field did not specify a defualt color.
This commit is contained in:
Mike Welsh 2020-09-18 18:35:01 -07:00
parent 44080d70a9
commit 2f84d468ee
1 changed files with 1 additions and 1 deletions

View File

@ -710,7 +710,7 @@ impl Default for TextSpan {
r: 0, r: 0,
g: 0, g: 0,
b: 0, b: 0,
a: 0, a: 255,
}, },
align: swf::TextAlign::Left, align: swf::TextAlign::Left,
bold: false, bold: false,