-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
beta2
-
x86
-
linux
-
Verified
Characters are rendered incorrect in choice menu on RedHat Linux6.2 and 7.1.
RedHatLinux6.2: It is rendered bold. (attached Redhat6.2.gif)
RedHatLinux7.1: It does not display a part of line that construct form of
character. (attached Redhat7.1.gif)
Tested with build 1.4.0-beta_refresh-b73.
Reploduce to:
1, compile Select.java below.
2, Execute on Redhat6.2 and 7.1
Start Select.java--------------------------------------------------
import java.awt.*;
import java.awt.event.*;
public class Select extends Frame {
Button button = new Button("Button");
Checkbox check = new Checkbox("Check Box");
Choice choice = new Choice();
TextField text = new TextField(10);
public Select() {
super("Select");
setLayout(new GridLayout(4, 1));
add(button);
add(check);
choice.add("Choice");
add(choice);
text.setText("Text");
add(text);
pack();
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
setVisible(true);
}
public static void main(String args[]) {
new Select();
}
}
End-----------------------------------------------