-
Bug
-
Resolution: Fixed
-
P3
-
1.1.4
-
1.1.5
-
sparc
-
solaris_2.5
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2016483 | 1.2.0 | Paul Young | P3 | Resolved | Fixed | 1.2beta2 |
Name: asC58863 Date: 08/12/97
The java.awt.Frame.setMenuBar() method moves frame up on the screen after
the third call.
Set menubar twice (pressing the button) and the frame will move upward.
Here is the test demonstrating the bug:
-----------------MenuBarTest.java------------------------
import java.awt.*;
import java.awt.event.*;
class MenuBarTest extends Frame {
int count = 1;
MenuBar mb = null;
MenuBarTest() {
setLayout(new FlowLayout());
Button b = new Button("Add new MenuBar");
b.addActionListener(new choiceButton());
add(b);
createMenuBar();
}
void createMenuBar() {
if(mb!=null) remove(mb);
mb = new MenuBar();
Menu m = new Menu("TestMenu"+count);
m.add(new MenuItem("one "+count));
m.add(new MenuItem("two "+count));
count++;
mb.add(m);
setMenuBar(mb);
}
public static void main(String argv[]) {
MenuBarTest f = new MenuBarTest();
f.setSize(300, 300);
f.setVisible(true);
}
class choiceButton implements ActionListener {
public void actionPerformed(ActionEvent e) {
String name = e.getActionCommand();
if(name.equals("Add new MenuBar")) createMenuBar();
}
}
}
---------Output from the test---------------------
this test moves frame up on the screen
--------------------------------------------------
======================================================================
- backported by
-
JDK-2016483 Frame.setMenuBar() moves frame up on the screen after the third call.
-
- Resolved
-