Skip to content
This repository has been archived by the owner on Feb 9, 2018. It is now read-only.

Commit

Permalink
Better outlining in Traces tab with monospaced font.
Browse files Browse the repository at this point in the history
  • Loading branch information
Raptor399 committed Mar 20, 2012
1 parent dde5984 commit f665be6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/net/pms/newgui/TracesTab.java
Expand Up @@ -20,6 +20,7 @@

import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
Expand Down Expand Up @@ -96,7 +97,7 @@ public JComponent build() {
jList = new JTextArea();
jList.setEditable(false);
jList.setBackground(Color.WHITE);
//jList.setFont(new Font("Arial", Font.PLAIN, 12));
jList.setFont(new Font("Courier New", Font.PLAIN, 12));
final JPopupMenu popup = new JPopupMenu();
JMenuItem defaultItem = new JMenuItem(Messages.getString("TracesTab.3"));

Expand Down

0 comments on commit f665be6

Please sign in to comment.