Skip to content

Commit

Permalink
Change default width to accommodate help table
Browse files Browse the repository at this point in the history
  • Loading branch information
Inaba Kazuhiro committed Nov 6, 2016
1 parent 1db1d42 commit a242755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/taskman/model/UserPrefs.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void updateLastUsedGuiSetting(GuiSettings guiSettings) {

public UserPrefs() {
Rectangle2D primaryScreenBounds = Screen.getPrimary().getVisualBounds();
this.setGuiSettings((primaryScreenBounds.getWidth() / 2),
this.setGuiSettings((983.0),
(primaryScreenBounds.getHeight()),
(int) (0.6*primaryScreenBounds.getWidth()),
0);
Expand Down

0 comments on commit a242755

Please sign in to comment.