Limit labels scrollbar to its own portion of the split-pane

Issue #195 closed
Robert Leach created an issue

So when you have both a tree and labels in view, the scrollbar for the labels includes both the tree and the labels, but it only controls the labels. What do you guys think of drawing the scrollbar only next to the label half of the split-pane?

Comments (4)

  1. Robert Leach reporter

    Perhaps this could be added in LabelView. I found this code in the constructor:

            scrollPane = new JScrollPane(this,
                    ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER,
                    ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
            scrollPane.setBorder(null);
    
  2. Log in to comment