-
Bug
-
Resolution: Fixed
-
P4
-
1.1.5, 1.1.6
-
b01
-
x86
-
windows_nt
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2021222 | 1.2.0 | Robi Khan | P4 | Resolved | Fixed | 1.2beta4 |
Name: jtC48319 Date: 06/15/98
This is observed Windows NT 4.0.
A Frame or Dialog that has been made non-resizable by calling setResizable(false) will not allow sizing via the frame border--the correct behavior--but it still has a frame icon that has Size, Minimize, and Maximize menu items that allow resizing. This is obviosly incorrect behavior, and is confusing to the user.
Example program:
import com.sun.java.swing.*;
public class foo
{
public static void main(String[] args)
{
JDialog dlg = new JDialog();
dlg.setResizable(false);
dlg.setModal(true);
dlg.show();
}
}
(Review ID: 33676)
======================================================================
- backported by
-
JDK-2021222 Non-resizable dialog still has frame icon that allows sizing
-
- Resolved
-
- duplicates
-
JDK-4128525 win32: Dialogs incorrectly have minimize/maximize options
-
- Closed
-
-
JDK-4138890 Nonresizable Dialogs have system menu and enabled commands Resize, Minimize...
-
- Closed
-
- relates to
-
JDK-4178494 Min/Max buttons not created with Frame and JFrame when not resizable
-
- Resolved
-