setting height of rows in jtree
hi,
In a JTree I've created, the row height is the same size as my icon height. I'd like to make the row height slightly bigger to make the tree appear a bit more spacious. However I am unable to change the sizing.
I've tried:
myJTree.setRowHeight(height)
myRenderer.setSize(width, height)
which seem to have no effect, and:
myRenderer.setPreferredSize(new Dimension(width,height))
which allows me to set the width but not the height. If I print out the height it is always set to 0.0. Can anyone help?
thanks in advance,
Matt

