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