Skip to content

Commit

Permalink
Merge pull request #96 from ChinJunAn/master
Browse files Browse the repository at this point in the history
Fix ReminderListWindow bug
  • Loading branch information
c0j0s authored Mar 16, 2023
2 parents c6bd5b1 + f0e2a91 commit d1fdec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/ui/ReminderListWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public ReminderListWindow(Stage root, Logic logic) {
this.stage = root;
this.logic = logic;
reminderList = new ListView<>(logic.getReminderList());
stage.setScene(new Scene(reminderList));
}

/**
Expand Down Expand Up @@ -96,7 +97,6 @@ protected void updateItem(Reminder item, boolean empty) {
}
}
});
stage.setScene(new Scene(reminderList));
stage.show();
}
}

0 comments on commit d1fdec3

Please sign in to comment.