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

Frames appear in top left hand corner

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.1.6
    • client-libs
    • generic
    • generic



      Name: mf23781 Date: 06/10/98


      Frames appear at top left

      A frame is displayed in the top left corner if no location is
      specified whereas in m114 it is displayed in a default location.

      Defect 3616 considered a similar problem in which a frame is displayed
      in the top left corner if it is resized immediately after showing.
      This was not fixed in the JDK but a workaround was suggested in which
      adding a delay between the show and resize fixes the problem. In m116
      this workaround no longer works. The frame is always displayed in the
      top left corner.

      Run the test case below to demonstrate. It creates 10 frames and
      resizes them immediately after showing. For frames 6 through 10 there
      is a delay between the show and resize. In m114 the first 5 are
      displayed in the top left corner and the second 5 are displayed in their
      proper locations. In m116 they are all displayed in the top left corner.

      Also fails with AIX 116 and NT/95 116.

      /******** FramePos.java ********/

      import java.awt.*;

      public class FramePos
      {
        public static void main(String argv[])
        {
          for (int i = 1; i <= 10; i++) {
            Frame fr = new Frame("FramePos " + i);
            fr.setSize(300,200);
            fr.setVisible(true);
            if (i >= 6)
              try {Thread.sleep(300);} catch (InterruptedException e) {}
            fr.setSize(310,210);
            try {Thread.sleep(700);} catch (InterruptedException e) {}
          }
        }
      }



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

            uwesunw Uwe Uwe (Inactive)
            miflemi Mick Fleming
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: