diff options
Diffstat (limited to 'src/cppcheckplus/text/MyTextPanel1.java')
-rw-r--r-- | src/cppcheckplus/text/MyTextPanel1.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cppcheckplus/text/MyTextPanel1.java b/src/cppcheckplus/text/MyTextPanel1.java index 4a70ce5..fb07c7d 100644 --- a/src/cppcheckplus/text/MyTextPanel1.java +++ b/src/cppcheckplus/text/MyTextPanel1.java | |||
@@ -2,7 +2,7 @@ package cppcheckplus.text; | |||
2 | 2 | ||
3 | import java.awt.BorderLayout; | 3 | import java.awt.BorderLayout; |
4 | import java.awt.TextArea; | 4 | import java.awt.TextArea; |
5 | 5 | import java.awt.Font; | |
6 | import javax.swing.JPanel; | 6 | import javax.swing.JPanel; |
7 | 7 | ||
8 | import cppcheckplus.control.XChartletFullScreenListenter; | 8 | import cppcheckplus.control.XChartletFullScreenListenter; |
@@ -26,7 +26,8 @@ public class MyTextPanel1 extends JPanel implements XChartletFullScreenListenter | |||
26 | { | 26 | { |
27 | layout = new BorderLayout(); | 27 | layout = new BorderLayout(); |
28 | setLayout(layout); | 28 | setLayout(layout); |
29 | textArea=new TextArea(""); | 29 | textArea=new TextArea(""); |
30 | textArea.setFont(new Font("MonoSpaced", Font.PLAIN, 12)); | ||
30 | 31 | ||
31 | add(textArea); | 32 | add(textArea); |
32 | } | 33 | } |