In the following XUL is quite simple, it contains a tree inside a vbox which
has an overflow:auto style, so when the window is getting too small a scroll
bar apears. This all works well but when I try to change the size of the
tree columns by draging the splitter, the mouse input for the window is
stuck and no dragging ocoures. Using "scroll" instead of "auto" gives the
same results while "visible" and "hidden" work (but don't give a scroll bar
ofcourse).

Can anyone suggest where to look for the cause of this bug?

<?xml version="1.0"?>

<window
 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
    xmlns:html="http://www.w3.org/1999/xhtml";
>

<vbox style="overflow:auto;"  flex="1" >
    <tree id="moduletree" flex="1"
             >
     <treecols>
      <treecol id="moduleoid" label="Oid" primary="true" flex="1" />
       <splitter class="tree-splitter"/>
      <treecol id="modulevalue" label="Value"  flex="1" />
     </treecols>
       </tree>
</vbox>
</window>


Thanks,
  Mark.



Reply via email to