-
Bug
-
Resolution: Won't Fix
-
P4
-
1.4.0
-
x86
-
windows_nt
Name: bsC130419 Date: 06/01/2001
java version "1.4.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta-b65)
Java HotSpot(TM) Client VM (build 1.4.0-beta-b65, mixed mode)
A Frame that is programmatically maximized and set to unresizable, can be
resized by double-clicking on the title bar, also if the "de-maximize" widget
and the item "Restore" in the window menu are correctly ghosted.
//----------------------------------
import javax.swing.*;
public class Unresizable extends JFrame
{
public static void main(String args[])
{
new Unresizable();
}
public Unresizable()
{
setDefaultCloseOperation(EXIT_ON_CLOSE);
setResizable(false);
show();
setExtendedState(MAXIMIZED_BOTH);
}
}
//------------------------------
(Review ID: 125612)
======================================================================
java version "1.4.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta-b65)
Java HotSpot(TM) Client VM (build 1.4.0-beta-b65, mixed mode)
A Frame that is programmatically maximized and set to unresizable, can be
resized by double-clicking on the title bar, also if the "de-maximize" widget
and the item "Restore" in the window menu are correctly ghosted.
//----------------------------------
import javax.swing.*;
public class Unresizable extends JFrame
{
public static void main(String args[])
{
new Unresizable();
}
public Unresizable()
{
setDefaultCloseOperation(EXIT_ON_CLOSE);
setResizable(false);
show();
setExtendedState(MAXIMIZED_BOTH);
}
}
//------------------------------
(Review ID: 125612)
======================================================================
- duplicates
-
JDK-4465105 Maximized, non-resizable Frames can be resized
-
- Closed
-