diff options
Diffstat (limited to 'Dozentenmodul/src/GUI/Summary.java')
| -rw-r--r-- | Dozentenmodul/src/GUI/Summary.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Dozentenmodul/src/GUI/Summary.java b/Dozentenmodul/src/GUI/Summary.java index f0955510..ff81a6c4 100644 --- a/Dozentenmodul/src/GUI/Summary.java +++ b/Dozentenmodul/src/GUI/Summary.java @@ -65,7 +65,7 @@ public class Summary extends JFrame { // TODO Auto-generated catch block
e.printStackTrace();
}
- setTitle("Dozentenmodul");
+ setTitle("Dozentenmodul *Prototyp*");
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
int top=(screenSize.height - 603) / 2;
int left=(screenSize.width - 722) / 2;
@@ -312,6 +312,7 @@ public class Summary extends JFrame { panel_1.add(scrollPane_3);
JTextArea textArea_comment = new JTextArea();
+ textArea_comment.setFont(new Font("Tahoma", Font.PLAIN, 11));
textArea_comment.setText(vm.vl.getComment());
scrollPane_3.setViewportView(textArea_comment);
textArea_comment.setEditable(false);
@@ -325,6 +326,7 @@ public class Summary extends JFrame { panel_1.add(scrollPane_2);
JTextArea textArea_long = new JTextArea();
+ textArea_long.setFont(new Font("Tahoma", Font.PLAIN, 11));
textArea_long.setText(vm.vl.getLongDesc());
scrollPane_2.setViewportView(textArea_long);
textArea_long.setEditable(false);
@@ -338,6 +340,7 @@ public class Summary extends JFrame { panel_1.add(scrollPane_1);
JTextArea textArea_short = new JTextArea();
+ textArea_short.setFont(new Font("Tahoma", Font.PLAIN, 11));
textArea_short.setText(vm.vl.getShortDesc());
scrollPane_1.setViewportView(textArea_short);
textArea_short.setEditable(false);
|
