-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.2.2
-
generic
-
generic
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)
======================================================================
- duplicates
-
JDK-4243631 JScrollPane fails to reshow scrollbars on window resizes
-
- Resolved
-