Improved Agenda module

This commit is contained in:
2015-04-08 10:55:16 +02:00
parent 0c59eb5dd3
commit a164f7b781
5 changed files with 5 additions and 1 deletions
+2
View File
@@ -49,11 +49,13 @@ public class AddArtistPanel extends JFrame{
JPanel panel5 = new JPanel();
JLabel image = new JLabel("Image: ");
image.setVisible(false);
panel5.add(image);
center.add(panel5);
JPanel panel6 = new JPanel();
JTextField imageTF = new JTextField("null", 15);
imageTF.setVisible(false);
panel6.add(imageTF);
center.add(panel6);
+1 -1
View File
@@ -92,7 +92,7 @@ public class AddEventPanel extends JFrame{
center.add(panel6);
JComboBox<Integer> minuteE = new JComboBox<Integer>(minutes);
minuteE.setSelectedIndex(today.get(GregorianCalendar.MINUTE));
minuteE.setSelectedIndex(today.get(GregorianCalendar.MINUTE+1));
panel6.add(minuteE);
panel6.add(new JSeparator(SwingConstants.VERTICAL));
panel6.add(new JSeparator(SwingConstants.VERTICAL));
+2
View File
@@ -49,11 +49,13 @@ public class EditArtistPanel extends JFrame {
JPanel panel5 = new JPanel();
JLabel image = new JLabel("Image: ");
image.setVisible(false);
panel5.add(image);
center.add(panel5);
JPanel panel6 = new JPanel();
JTextField imageTF = new JTextField("null", 15);
imageTF.setVisible(false);
panel6.add(imageTF);
center.add(panel6);
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 B