Przeglądaj źródła

Merge remote-tracking branch 'origin/master'

Eren Yilmaz 6 lat temu
rodzic
commit
f6d070d0f7
1 zmienionych plików z 3 dodań i 1 usunięć
  1. 3 1
      src/view/MainView.java

+ 3 - 1
src/view/MainView.java

@@ -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 )