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

solaris: Window won't show when pack() is called; resize() necessary to show

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P2 P2
    • None
    • 1.1, 1.1.4
    • client-libs
    • generic, sparc
    • solaris_2.5.1, solaris_10

      On Solaris, if a window is created and pack() is called before show(),
      the window never shows up. If resize() is called instead of pack(), then
      it shows correctly!

      Program below demonstrates. Resproducible on 1.1beta3.


      import java.awt.*;

      class TestWin extends Window
      {
         Label label = new Label("Window Test");
         TestWin(Frame frame)
         {
            super(frame);
            add("Center", label);
            
            // Pack doesn't work for Window. Is this how it's
            // supposed to work or is it a bug?
            pack();

            // setting the size like this works...
            //setSize(200, 200);
         }

         public static void main(String args[]) {
            Frame frame = new Frame("Dummy");
            TestWin tw = new TestWin(frame);
            tw.show();
         }
      }

            gsaab Georges Saab
            amfowler Anne Fowler (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: