-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.2
-
x86
-
linux
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.
Changing current pane makes no effect. Pane remains the same. But if
you change frame size, objects on the pane will change to what is expected.
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-4292955 Moving of color choose slider in HSB pane of JColorChooser makes no effect
-
- Closed
-