1
0
Fork 0

Fix Tergel mess v2

This commit is contained in:
Ethanell 2021-01-12 15:31:30 +01:00
parent 61a0b623c9
commit 23cd5d4b3d
2 changed files with 9 additions and 4 deletions

View file

@ -52,7 +52,7 @@ public class GUI extends JFrame implements ActionListener {
setIconImage(img.getImage()); setIconImage(img.getImage());
this.renderMenu(); this.renderMenu();
new Agenda(agendaPanel, this.currentPage, this.currentCompetition); agenda = new Agenda(agendaPanel, this.currentPage, this.currentCompetition);
previousButton.addActionListener(this); previousButton.addActionListener(this);
nextButton.addActionListener(this); nextButton.addActionListener(this);
HCButton.addActionListener(this); HCButton.addActionListener(this);

View file

@ -48,10 +48,15 @@ public class ProjectionHandler extends JDialog {
this.agenda = agenda; this.agenda = agenda;
try { try {
competitionComboBox.getModel().setSelectedItem(agenda.getCompetition()); competitionComboBox.getModel().setSelectedItem(agenda.getCompetition());
} catch (NotFoundInTable ignored) { } catch (NotFoundInTable ignored) {}
if (agenda.getDate() != null || agenda.getSlot() != null) {
updateMovies();
updateDates();
dayComboBox.getModel().setSelectedItem(agenda.getDate());
updateSlots();
slotComboBox.getModel().setSelectedItem(agenda.getSlot());
updateRooms();
} }
dayComboBox.getModel().setSelectedItem(agenda.getDate());
slotComboBox.getModel().setSelectedItem(agenda.getSlot());
createUIComponents(); createUIComponents();
} }