Skip to content

Commit

Permalink
GUISetting Starting Screen Size Change
Browse files Browse the repository at this point in the history
Change starting width to 1024 and height to 640, which is the minimum window size
  • Loading branch information
rui-han-crh committed Nov 7, 2022
1 parent 5ee1266 commit 56312f9
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 @@ -10,8 +10,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 = 640;
private static final double DEFAULT_WIDTH = 1024;

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

0 comments on commit 56312f9

Please sign in to comment.