pat created NETBEANS-5202:
-----------------------------

             Summary: EventQueue.invokeLater breaks editor
                 Key: NETBEANS-5202
                 URL: https://issues.apache.org/jira/browse/NETBEANS-5202
             Project: NetBeans
          Issue Type: Bug
          Components: cnd - Editor
    Affects Versions: 12.0
            Reporter: pat
         Attachments: brokensource.txt, idelog.txt, uilog.txt

Somewhere around typing in new P below the editor stops looking up possible 
fill in, reformatting no longer works, control c etc no longer works.    Things 
are working normally before that.

package pattest;

import java.awt.EventQueue;

/**
 *
 * @author PATGI
 */
public class PatTest {

    public void display() {
        System.out.println("this is the display");
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        System.out.println("Hi Pat");
        
        new PatTest().display();
        
        EventQueue.invokeLater(new Runnable() {
            new P
        });

    }

}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to