bug-classpath
[Top][All Lists]
Advanced

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

[Bug swing/23966] New: JInternalFrame mouse moved infinite loop


From: abalkiss at redhat dot com
Subject: [Bug swing/23966] New: JInternalFrame mouse moved infinite loop
Date: 19 Sep 2005 15:21:38 -0000

Run the testcase below and move the mouse to be in the main section of the
JInternalFrame (not the title bar part, the content part).  Out of Memory errors
occur as the mouse moved event gets infinitely passed around.

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

-- 
           Summary: JInternalFrame mouse moved infinite loop
           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=23966




reply via email to

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