JDK-4148981 : Non-resizable dialog still has frame icon that allows sizing
  • Type: Bug
  • Component: client-libs
  • Sub-Component: java.awt
  • Affected Version: 1.1.5,1.1.6
  • Priority: P4
  • Status: Closed
  • Resolution: Fixed
  • OS: windows_nt
  • CPU: x86
  • Submitted: 1998-06-15
  • Updated: 1999-01-15
  • Resolved: 1999-01-15
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other Other
1.1.7 b01Fixed 1.2.0Fixed
Related Reports
Duplicate :  
Duplicate :  
Relates :  
Description

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)
======================================================================

Comments
CONVERTED DATA BugTraq+ Release Management Values COMMIT TO FIX: generic FIXED IN: 1.1.7 1.2beta4 INTEGRATED IN: 1.1.7 1.2beta4
14-06-2004

EVALUATION Problem was fixed as part of other fixes (see 4097529, 4094035). robi.khan@eng 1998-09-17
17-09-1998