-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.0
-
sparc
-
solaris_2.4
When Dialog.setResizable(false) is done, the dialog still continues to be resizable.
Run DialogTest.java and click on Dialog1 button. This should bring up a dialog
box. (Dialog.resize also doesnt work properly here, for some reason, but that is
another bug.) Now click on the NonResizable button. This calls Dialog.setResizable(false)
which should disallow any resize of the dialog. However the dialog still remains
resizable.
Vijay
---------------------------- reopen ------------
import java.awt.*;
public class DialogTest {
public static void main(String args[]) {
Frame f=new Frame("Frame");
Dialog d=new Dialog(f,"Dialog");
f.setSize(50,50);
d.setSize(100,100);
d.add(new Label("Dialog",Label.CENTER));// The workaround
f.setResizable(false);
d.setResizable(false);
f.setVisible(true);
d.setVisible(true);
}
}
------
The Dialog object is resizible.
java full versions are "JDK-1.2beta3-D and JDK1.1.6F
###@###.### 1998-01-28
Name: rrT76497 Date: 05/06/98
ksuresh/SIPTech May 06,98. This bug is already in db.
======================================================================
Run DialogTest.java and click on Dialog1 button. This should bring up a dialog
box. (Dialog.resize also doesnt work properly here, for some reason, but that is
another bug.) Now click on the NonResizable button. This calls Dialog.setResizable(false)
which should disallow any resize of the dialog. However the dialog still remains
resizable.
Vijay
---------------------------- reopen ------------
import java.awt.*;
public class DialogTest {
public static void main(String args[]) {
Frame f=new Frame("Frame");
Dialog d=new Dialog(f,"Dialog");
f.setSize(50,50);
d.setSize(100,100);
d.add(new Label("Dialog",Label.CENTER));// The workaround
f.setResizable(false);
d.setResizable(false);
f.setVisible(true);
d.setVisible(true);
}
}
------
The Dialog object is resizible.
java full versions are "JDK-1.2beta3-D and JDK1.1.6F
###@###.### 1998-01-28
Name: rrT76497 Date: 05/06/98
ksuresh/SIPTech May 06,98. This bug is already in db.
======================================================================
- duplicates
-
JDK-4115213 Dialog.setResizable(false) does not work.
-
- Resolved
-