Hi
I noticed that the width of a border depends on the width of its title.
Is this intended?

here an example:

<Window title="borderTest" maximized="true"
    xmlns:bxml="http://pivot.apache.org/bxml";
    xmlns="org.apache.pivot.wtk">

<BoxPane orientation="vertical">
<Border>
<Label text="look at the border"
        styles="{font:'Arial bold 24'}"/>
</Border>
<Border title="Title">
<Label text="look at the border"
        styles="{font:'Arial bold 24'}"/>
</Border>
<Border title="Very looooooong title">
<Label text="look at the border"
        styles="{font:'Arial bold 24'}"/>
</Border>

</BoxPane>

</Window>

Reply via email to