-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.4.0
-
x86
-
generic
Modal dialogs when invoked, appear always at the top-left corner of the screen irrespective of whether they have a owner or the owner is null. This happens only in KDE. In other OSs and GNOME, the dialog box appears on top of the owner if they have one else appear at the center of the screen (I think this is the right behaviour).
Tried in both b67 & b68.
Code to reproduce:
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class testModal extends JFrame implements ActionListener {
JPanel panel;
JButton button1, button2, button3;
public testModal() {
setSize(600, 100);
panel = new JPanel(new GridLayout(1,3));
button1 = new JButton("No Parent");
button1.addActionListener(this);
button2 = new JButton("Parent=Panel");
button2.addActionListener(this);
button3 = new JButton("Parent=null");
button3.addActionListener(this);
panel.add(button1);
panel.add(button2);
panel.add(button3);
getContentPane().add(panel);
}
public void actionPerformed(ActionEvent ae) {
String btnAction = ae.getActionCommand();
if (btnAction.equals("No Parent")) {
JOptionPane.showInputDialog("choose one", "Input");
}
else
if (btnAction.equals("Parent=Panel")) {
JOptionPane.showInputDialog(panel, "choose one", "Input");
}
else
if (btnAction.equals("Parent=null")) {
JOptionPane.showInputDialog(null, "choose one", "Input");
}
}
public static void main(String args[]) {
testModal t = new testModal();
t.setVisible(true);
}
}
Tried in both b67 & b68.
Code to reproduce:
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class testModal extends JFrame implements ActionListener {
JPanel panel;
JButton button1, button2, button3;
public testModal() {
setSize(600, 100);
panel = new JPanel(new GridLayout(1,3));
button1 = new JButton("No Parent");
button1.addActionListener(this);
button2 = new JButton("Parent=Panel");
button2.addActionListener(this);
button3 = new JButton("Parent=null");
button3.addActionListener(this);
panel.add(button1);
panel.add(button2);
panel.add(button3);
getContentPane().add(panel);
}
public void actionPerformed(ActionEvent ae) {
String btnAction = ae.getActionCommand();
if (btnAction.equals("No Parent")) {
JOptionPane.showInputDialog("choose one", "Input");
}
else
if (btnAction.equals("Parent=Panel")) {
JOptionPane.showInputDialog(panel, "choose one", "Input");
}
else
if (btnAction.equals("Parent=null")) {
JOptionPane.showInputDialog(null, "choose one", "Input");
}
}
public static void main(String args[]) {
testModal t = new testModal();
t.setVisible(true);
}
}
- duplicates
-
JDK-4102292 New AWT Frame w/o coordinates always pops up in upper left hand screen location.
-
- Resolved
-