Skip to content

Commit

Permalink
Merge pull request #121 from ys112/gui-settings-fix
Browse files Browse the repository at this point in the history
Fix window being too small on launch
  • Loading branch information
ys112 authored Apr 4, 2024
2 parents 752019c + ec9d528 commit 1fdb1da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/seedu/address/commons/core/GuiSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
*/
public class GuiSettings implements Serializable {

private static final double DEFAULT_HEIGHT = 600;
private static final double DEFAULT_WIDTH = 740;
private static final double DEFAULT_HEIGHT = 715;
private static final double DEFAULT_WIDTH = 1054;

private final double windowWidth;
private final double windowHeight;
Expand Down

0 comments on commit 1fdb1da

Please sign in to comment.