-
Bug
-
Resolution: Duplicate
-
P1
-
None
-
1.4.0
-
x86
-
linux
Name: icR10030 Date: 12/07/2000
If color depth of X Windows for linux Redhat 6.2
is 16 bits per pixel Swing does not work.
Due to this reason, all JCK-interactive javax_swing tests fail in
Linux with color depth 16 bpp.
To reproduce bug:
1. Set 16 bits per pixel
2. Compile following test.java
3. Run test.class under jdk1.4.0beta-b42
Test creates single JFrame with JButton.
JFrame is created, but JButton does not.
//-------------------- test.java -----------------------
import javax.swing.*;
public class test
{
public static void main(String[] args) {
JFrame f=new JFrame();
JButton p=new JButton("I'm swing button!");
f.getContentPane().add(p);
f.setBounds(10,10,200,100);
f.show();
}
}
//-------------------- end test.java -------------------
======================================================================
- duplicates
-
JDK-4391347 Linux: jdk1.4 b40: contents of JFrames not shown
-
- Closed
-