JDK-4172782 : Frame.setResizable(false) prevents frame being minimized
  • Type: Bug
  • Component: client-libs
  • Sub-Component: java.awt
  • Affected Version: 1.2.0
  • Priority: P3
  • Status: Resolved
  • Resolution: Fixed
  • OS: windows_95
  • CPU: x86
  • Submitted: 1998-09-10
  • Updated: 1999-01-27
  • Resolved: 1999-01-27
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
1.2.2 1.2.2Fixed
Related Reports
Relates :  
Description

Name: bk70084			Date: 09/10/98


The following code:

import java.awt.*;

public class test
{
   public static void main(String argv[]) {
      Frame f=new Frame("test");
      f.setSize(200,200);
      f.setResizable(false);
      f.show();
   }
}

produces a window that cannot be resized, however it cannot be minimized either.
(Review ID: 36354)
======================================================================

Comments
CONVERTED DATA BugTraq+ Release Management Values COMMIT TO FIX: 1.2.2 FIXED IN: 1.2.2 INTEGRATED IN: 1.2.2
14-06-2004

WORK AROUND Name: bk70084 Date: 09/10/98 Use a previous version of jdk. (1.1.6 works) ======================================================================
11-06-2004

EVALUATION Commit to fix. david.mendenhall@eng 1998-12-01 Fixed by adding MINIMIZE into Menu func and decoration. Files changed are awt_util.c and awt_Window.cpp. xianfa.deng@Eng 1999-01-21
01-12-1998