Duplicate :
|
Found on RedHat EL3, Gnome. This is a regression from Tiger. Compile and run the following simple testcase will show the problem. import java.awt.*; public class choice{ public static void main(String args[]){ Frame f = new Frame("awt.Choice"); Panel p = new Panel(); Choice c = new Choice(); c.addItem("one"); c.addItem("two"); c.addItem("three"); p.add(c); f.add(p); f.setSize(200,200); f.setVisible(true); } } ###@###.### 2004-11-12 05:18:51 GMT
|