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

Applet's graphics configuration is not updated when browser window is moved to another screen

XMLWordPrintable

    • generic
    • generic

      Run the following applet in browser:

      ---- CODE BEGINS ----

      import java.applet.*;

      import java.awt.*;
      import java.awt.event.*;

      public class LocationRelativeTo extends Applet
      {
        public void init()
        {
          Button b = new Button("B");
          b.addActionListener(new ActionListener()
            {
              public void actionPerformed(ActionEvent ae)
              {
                System.out.println("GC: " + getGraphicsConfiguration());
              }
            }
          );
          add(b);
        }

        public void start()
        {
          setVisible(true);
        }
      }

      ---- CODE ENDS ----

      Move the browser window with the applet from one screen to another and back and press the button on each screen. If you see the printed GC always being the same (screen where the browser window was initially shown), then the bug is reproduced.

      The described behavior is observed on all the platforms. This is not a regression as the bug can be seen with at least 6.0 and current 7.0 builds.

            serb Sergey Bylokhov
            art Artem Ananiev (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: