Hi,
I have horizontal box consisting of 4 other boxes separated by splitters. I want to use splitter that looks like the tree-splitter (with no width), but whenever im trying to use it splitters dissapear and the collumns cannot be resized. Any ideas why? Or have you got any idea how can I implement a splitter that would look like one with id="folderpane_splitter" that has width probably 1px- this solution would be just perfect for me.
My code looks like:
<hbox>
<hbox flex="10">
<label value="name1"/>
</hbox>
<splitter/>
<hbox flex="20">
<label value="name2"/>
</hbox>
<splitter/>
<hbox flex="30"">
<label value="name3"/>
</hbox>
<splitter/>
<hbox flex="40">
<label value="name4"/>
</hbox>
</hbox>
If anyone wonders I'm working on an extension for Thunderbird. Thank you very much in advance ;)