diff options
| author | tspitzer | 2013-10-17 16:03:17 +0200 |
|---|---|---|
| committer | tspitzer | 2013-10-17 16:03:17 +0200 |
| commit | f4025bd62ecc5e0dfbf19c87f4e79fda199148e7 (patch) | |
| tree | 941c100a3f7d61b52115edd6217170ecf87fa5a8 /Dozentenmodul/src/GUI/Summary.java | |
| parent | Version vom 17.10 (diff) | |
| download | tutor-module-f4025bd62ecc5e0dfbf19c87f4e79fda199148e7.tar.gz tutor-module-f4025bd62ecc5e0dfbf19c87f4e79fda199148e7.tar.xz tutor-module-f4025bd62ecc5e0dfbf19c87f4e79fda199148e7.zip | |
-Anpassen der Texte
-Bug in SQL gefixt
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);
|
