-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
1.2.2
-
x86
-
linux
Name: kaC94536 Date: 01/11/2000
The following code shows JComboBox created with default constructor
and containing five items. Try to select an item from drop-down list
and you'll see that it is not shown properly. If you resize frame
window to a smaller height (50 pixels for example) the drop-down list
will popup normally. The same code works well if JFrame is used
instead of Frame.
The same behavior is observed on Solaris.
---------------------------- test.java -------------------------------
import java.awt.*;
import javax.swing.*;
class test {
public static void main(String args[]) {
Frame f = new Frame();
f.setLayout(new FlowLayout());
JComboBox jcb = new JComboBox();
jcb.addItem("one");
jcb.addItem("two");
jcb.addItem("three");
jcb.addItem("four");
jcb.addItem("five");
f.add(jcb);
f.setSize(300, 300);
f.show();
}
}
======================================================================
======================================================================