Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4249713

Scrollbars around a JTree not activated when divider moves up.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.2.2
    • client-libs



      Name: vi73552 Date: 06/25/99


      Compile the following class and launch it. Drag the divider as far to the bottom as it will go. Now drag the divider as far to the top as it will go. Notice how the trees are covered up, but the scrollbars do not appear. Any other action on the trees, however, will activate the bars.

      import javax.swing.*;
      import java.awt.*;


      public class SplitTreeTest extends JFrame
      {
          
          public static void main(String [] args)
          {
              new SplitTreeTest().setVisible(true);
          }
          
          public SplitTreeTest()
          {
              super("SplitTreeTest");
              setSize(300,300);
              getContentPane().setLayout(new BorderLayout());
              JTree t1 = new JTree();
              JTree t2 = new JTree();
              JSplitPane jsp = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
                          new JScrollPane(t1),
                          new JScrollPane(t2));
              getContentPane().setLayout(new BorderLayout());
              getContentPane().add(BorderLayout.WEST,jsp);
                      
          }
          
      }
      (Review ID: 84834)
      ======================================================================

            svioletsunw Scott Violet (Inactive)
            vasya Vassili Igouchkine (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: