Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-1231773

Dialog.setResizable() doesnt work when set to false.

XMLWordPrintable

    • 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.


      ======================================================================

            rramsunw Ranganathan Ram (Inactive)
            vssriniv Vijay Srinivasan (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: