Skip to content

Commit

Permalink
fix: fix not applying window size properties
Browse files Browse the repository at this point in the history
  • Loading branch information
hizumiaoba committed Jan 6, 2022
1 parent 13adee2 commit 97fd712
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/ranfa/main/DelesteRandomSelector.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ public DelesteRandomSelector() {
this.setTitle(this.easter.getTodaysBirth());
this.logger.debug("Version: {}", CheckVersion.getVersion());
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// this.setBounds(100, 100, this.property.getWindowWidth(), this.property.getWindowHeight());
this.setBounds(100, 100, 640, 360);
this.setBounds(100, 100, this.property.getWindowWidth(), this.property.getWindowHeight());
// this.setBounds(100, 100, 640, 360);
this.contentPane = new JPanel();
this.contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
this.setContentPane(this.contentPane);
Expand Down

0 comments on commit 97fd712

Please sign in to comment.