Fixed small textarea font size

This commit is contained in:
Vhati 2013-09-04 01:09:03 -04:00
parent 35ae7bacac
commit c6f9b0d89b
2 changed files with 8 additions and 1 deletions

View file

@ -47,6 +47,7 @@ public class ProgressDialog extends JDialog implements ActionListener {
statusArea = new JTextArea();
statusArea.setLineWrap( true );
statusArea.setWrapStyleWord( true );
statusArea.setFont( statusArea.getFont().deriveFont( 13f ) );
statusArea.setEditable( false );
statusScroll = new JScrollPane( statusArea );