-
Bug
-
Resolution: Fixed
-
P3
-
1.3.0, 1.3.1_01
-
02
-
x86, sparc
-
solaris_8, windows_nt
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2041450 | 1.4.0 | Scott Violet | P3 | Resolved | Fixed | beta |
Name: krC82822 Date: 03/14/2001
14 Mar 2001, eval1127@eng -- see also # 4407335 and resizeWeight property notes.
Perhaps we should add a "keepHidden" property.
-----------
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
I have a JFrame with a JSplitPane as the only component. I have set the
JSplitPane to be OneTouchExpandable. When I run the code, if I hide one pane of
the JSplitPane and resize the window horizontally, the hidden frame reappears.
I think that on resize, the hidden frame should remain hidden instead of
resizing back to its minimum size.
import javax.swing.*;
import java.awt.*;
public class Test {
public static void main(String args[]) {
JFrame f = new JFrame("SplitPane Problem");
Container c = f.getContentPane();
c.setLayout(new BorderLayout());
JSplitPane splitPane = new JSplitPane
(JSplitPane.HORIZONTAL_SPLIT, new JButton("TEST"),
new JButton("TEST 2"));
splitPane.setOneTouchExpandable(true);
c.add(splitPane, BorderLayout.CENTER);
f.pack();
f.show();
}
}
(Review ID: 118815)
======================================================================
- backported by
-
JDK-2041450 JSplitPane: preserve "hidden" state of one component on resize of parent frame
-
- Resolved
-