-
Bug
-
Resolution: Fixed
-
P2
-
1.4.0
-
rc1
-
x86
-
windows_98, windows_2000, windows_xp
-
Verified
The java.awt.Choice does not popup and stay when clicked in windows (I tested it in Win 98, Win 2K and Win XP). It pops up and then goes down again. It does not stay in a popped up state. This has been happening in merlin build 81 and not in earlier builds (I tested against 79 and 80). To select a choice, you have to keep the mouse button pressed and then do a drag to the required choice item. This bug can be seen in the program :
import java.awt.*;
import java.awt.event.*;
public class ChoiceTest {
public static void main(String [] args){
Frame f = new Frame("Test Frame");
Choice c = new Choice();
c.add("Choice 1");
c.add("Choice 2");
c.add("Choice 3");
c.add("Choice 4");
c.add("Choice 5");
c.add("Choice 6");
c.add("Choice 7");
c.add("Choice 8");
c.add("Choice 9");
f.setLayout(new FlowLayout());
f.add(c);
f.setSize(100,100);
f.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent we){
System.exit(0);
}
});
f.setVisible(true);
}
}
import java.awt.*;
import java.awt.event.*;
public class ChoiceTest {
public static void main(String [] args){
Frame f = new Frame("Test Frame");
Choice c = new Choice();
c.add("Choice 1");
c.add("Choice 2");
c.add("Choice 3");
c.add("Choice 4");
c.add("Choice 5");
c.add("Choice 6");
c.add("Choice 7");
c.add("Choice 8");
c.add("Choice 9");
f.setLayout(new FlowLayout());
f.add(c);
f.setSize(100,100);
f.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent we){
System.exit(0);
}
});
f.setVisible(true);
}
}
- duplicates
-
JDK-4599593 The Drop down box springs up everytime it is dropped down in Plug-in 1.4.0 Beta3
-
- Closed
-
- relates to
-
JDK-4684679 Choice menu is not displayed in hopper build-11
-
- Closed
-
-
JDK-4391548 Regression test java/awt/event/MouseEvent/RobotLWTest/RobotLWTest.java Failing
-
- Closed
-