-
Bug
-
Resolution: Fixed
-
P4
-
1.2.2
-
rc2
-
x86
-
linux
-
Verified
Name: kaC94536 Date: 11/19/99
Java 2 Platform SE v1.3 specification reads:
...
JColorChooser provides a pane of controls designed to allow a user to
manipulate and select a color.
...
The following test creates a JColorChooser instance in Frame container.
If you choose HSB pane and try to resize frame
you will see HSB part of color chooser.Trying to move Slider up and down
makes no effect - left panel with colors doesn't change.
This bug affects api/javax_swing/interactive/JColorChooserTests.html JCK
test.
----------------------------- test.java ------------------------
import java.awt.Frame;
import javax.swing.JColorChooser;
public class Test {
static Frame testFrame = null;
static JColorChooser chooser = null;
public static void main( String[] argv ) {
testFrame= new Frame();
chooser= new JColorChooser();
testFrame.add(chooser);
testFrame.setSize(200,400);
testFrame.setVisible(true);
}
}
======================================================================
======================================================================
- duplicates
-
JDK-4292956 Changing pane in JColorChooser class makes no effect
-
- Closed
-