Skip to content

Commit

Permalink
Update default size in UserPrefs.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Kratious committed Oct 30, 2018
1 parent 839a50c commit 226a740
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
*/
public class MainApp extends Application {

public static final Version VERSION = new Version(1, 2, 1, true);
public static final Version VERSION = new Version(1, 3, 0, true);

private static final Logger logger = LogsCenter.getLogger(MainApp.class);

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/model/UserPrefs.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class UserPrefs {
private Path addressBookFilePath = Paths.get("data" , "addressbook.xml");

public UserPrefs() {
setGuiSettings(500, 500, 0, 0);
setGuiSettings(1000, 600, 0, 0);
}

public GuiSettings getGuiSettings() {
Expand Down

0 comments on commit 226a740

Please sign in to comment.