We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d57a9a5 + 6a58b0c commit 8901a29Copy full SHA for 8901a29
src/main/java/org/scijava/ui/swing/script/OutputPane.java
@@ -50,8 +50,7 @@ public class OutputPane extends JTextArea {
50
51
public OutputPane(final LogService log) {
52
this.log = log;
53
- final Font font = new Font("Courier", Font.PLAIN, 12);
54
- setFont(font);
+ setFont(new Font(Font.MONOSPACED, Font.PLAIN, getFont().getSize()));
55
setEditable(false);
56
setFocusable(true);
57
setLineWrap(true);
0 commit comments