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

Cursor changes when using setWindowDecorationStyle method

XMLWordPrintable

      The cursor changes from an arrow to a resizing cursor after cicking between 1 to 3 times on the maximize/restore button in the internal frame. This happens only when you use method setWindowDecorationStyle.


      I compiled and ran the following code below with 1.5 b33 on Win 2k.

      -------------------------------------------------------------------
      import javax.swing.*;

      public class JFrameTest {

              public static void main(String[] args) {
                      new JFrameTest();
              }

              public JFrameTest() {

                      JFrame frame = new JFrame();
                      frame.getRootPane().setWindowDecorationStyle(JRootPane.FRAME);

                      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                      frame.setSize(300,300);
                      frame.setVisible(true);
              }


      }
      -------------------------------------------------------------------

            Unassigned Unassigned
            sjchan Steven Chan (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: