Skip to content

Commit

Permalink
update and build
Browse files Browse the repository at this point in the history
  • Loading branch information
DJ-Raven committed Apr 13, 2024
1 parent 7613b43 commit 9501947
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 1 deletion.
Binary file removed library/other/flatlaf-3.2.5.jar
Binary file not shown.
Binary file added library/other/flatlaf-3.4.1.jar
Binary file not shown.
Binary file removed library/other/flatlaf-extras-3.2.5.jar
Binary file not shown.
Binary file added library/other/flatlaf-extras-3.4.1.jar
Binary file not shown.
Binary file not shown.
Binary file removed library/swing-datetime-picker-1.0.1.jar
Binary file not shown.
Binary file added library/swing-datetime-picker-1.1.0.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void monthSelected(int month) {
};
}

public PanelYear.EventYearChanged createEventYearChanged() {
private PanelYear.EventYearChanged createEventYearChanged() {
return new PanelYear.EventYearChanged() {
@Override
public void yearSelected(int year) {
Expand Down
7 changes: 7 additions & 0 deletions src/main/java/raven/datetime/component/time/TimePicker.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,13 @@ public void showPopup() {
popupMenu.show(editor, 0, editor.getHeight());
}

public void closePopup() {
if (popupMenu != null) {
popupMenu.setVisible(false);
repaint();
}
}

public TimePicker() {
init();
}
Expand Down

0 comments on commit 9501947

Please sign in to comment.