-
Bug
-
Resolution: Fixed
-
P2
-
6
-
b58
-
generic
-
generic
-
Verified
A frame is set to always-on-top. A child dialog is created for this frame. Pack is called on child dialog. Frame is no longer stays always on top.
Regression introduced in Mustang-b24 on Win32.
----------------------------------------------------
import java.awt.*;
public class AlwaysOnTopFrame {
public static void main(String args[]) {
Frame frame = new Frame("JFrame");
frame.setAlwaysOnTop(true);
frame.setSize(200, 200);
frame.setVisible(true);
Dialog dialog = new Dialog(frame, true);
dialog.pack();
}
}
----------------------------------------------------
###@###.### 2005-03-04 15:21:59 GMT
Regression introduced in Mustang-b24 on Win32.
----------------------------------------------------
import java.awt.*;
public class AlwaysOnTopFrame {
public static void main(String args[]) {
Frame frame = new Frame("JFrame");
frame.setAlwaysOnTop(true);
frame.setSize(200, 200);
frame.setVisible(true);
Dialog dialog = new Dialog(frame, true);
dialog.pack();
}
}
----------------------------------------------------
###@###.### 2005-03-04 15:21:59 GMT
- relates to
-
JDK-6247280 REG: always-on-top doesn't work with child dialog
- Resolved
-
JDK-6243443 Focus is missing in javacontrolpanel
- Closed