-
Type:
Bug
-
Resolution: Duplicate
-
Priority:
P2
-
Affects Version/s: 6
-
Component/s: client-libs
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
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
- duplicates
-
JDK-6191341 Choice's popup doesn't show up
-
- Resolved
-