|
@@ -142,11 +142,13 @@ public class MainView {
|
|
|
JTextArea info = new JTextArea();
|
|
|
info.setEditable( false );
|
|
|
info.setFont( new Font( Font.MONOSPACED, Font.PLAIN, 11 ) );
|
|
|
- info.setText( debugInfo() );
|
|
|
+ String infoS = debugInfo();
|
|
|
+ info.setText( infoS );
|
|
|
JScrollPane view = new JScrollPane( info );
|
|
|
debugFrame.add( view );
|
|
|
debugFrame.setSize( frame.getWidth(), frame.getHeight() );
|
|
|
debugFrame.setVisible( true );
|
|
|
+ System.out.println( infoS );
|
|
|
}
|
|
|
|
|
|
public MainView( ElkNode graph )
|