bug-classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug swing/23920] New: setting the layeredPane in a RootPaneContainer ca


From: abalkiss at redhat dot com
Subject: [Bug swing/23920] New: setting the layeredPane in a RootPaneContainer causes weird behaviour
Date: 16 Sep 2005 16:08:57 -0000

I've tested this with JFrames and JDialogs (which both implement
RootPaneContainer), calling setLayeredPane(new JLayeredPane()); causes our
implementation to act weirdly.  The JDK handles this with no problem.  A simple
test case is below:

***TESTCASE***
import javax.swing.*;
public class Test
{
  public static void main(String[] args)
  {
    JFrame jf = new JFrame();
    jf.setLayeredPane (new JLayeredPane());
    jf.setSize(600,600);
    JInternalFrame frame = new JInternalFrame("title2", true, true, true, true);
    jf.setContentPane(frame);
    frame.show();
    jf.show();
  }
}

-- 
           Summary: setting the layeredPane in a RootPaneContainer causes
                    weird behaviour
           Product: classpath
           Version: unspecified
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: swing
        AssignedTo: abalkiss at redhat dot com
        ReportedBy: abalkiss at redhat dot com
                CC: bug-classpath at gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23920




reply via email to

[Prev in Thread] Current Thread [Next in Thread]