Segment font name/size doesn't override text font name/size

Let's start with the XML.

<Text IsHtmlTagSupported="true">
<Segment FontName="Arial" FontSize="11">
<ul><li>item 1</li><li>item 2</li></ul>
</Segment>
</Text>

In the code above my ordered list text is not 11pt Arial, it is the default sized Times font. If I change it to:

<Text IsHtmlTagSupported="true" FontName="Arial" FontSize="11">
<Segment>
<ul><li>item 1</li><li>item 2</li></ul>
</Segment>
</Text>

Now the font is 11pt Arial. However let's say I have two segments, and I want the 2nd segment a different size.

<Text IsHtmlTagSupported="true" FontName="Arial" FontSize="11">
<Segment>
<ul><li>item 1</li><li>item 2</li></ul>
</Segment>
<Segment FontName="Arial" FontSize="22">
This is my second segment
</Segment>
</
Text>

The font size for both segments show up 11pt Arial, even though the 2nd segment should be 22pt Arial.

Remember, this is all specified in the XML file.

Let me know when this can be fixed.

Dan

Dear Dan,

I have reproduced this error. We will try to fix is soon.

We have fixed the bug for single segment. The hotfix will be published early next week. The multiple sigments problem can’t be resolved in short time. I think it is not normal to add another segment when the first segment is a HTML list.