Skip to content

Commit

Permalink
Merge pull request #460 from ong6/Small-changes
Browse files Browse the repository at this point in the history
Small changes
  • Loading branch information
ong6 authored Apr 1, 2021
2 parents f46a013 + f024fd2 commit 29195f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/seedu/us/among/commons/core/GuiSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class GuiSettings implements Serializable {

private static final double DEFAULT_HEIGHT = 600;
private static final double DEFAULT_WIDTH = 740;
private static final String DEFAULT_THEME = "imposter";
private static final String DEFAULT_THEME = "material";

private final double windowWidth;
private final double windowHeight;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/view/MainWindow.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<scene>
<Scene>
<stylesheets>
<URL value="@MaterialTheme.css" />
<URL value="@ImposterTheme.css" />
<URL value="@Extensions.css" />
</stylesheets>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void readUserPrefs_extraValuesInFile_extraValuesIgnored() throws DataConv

private UserPrefs getTypicalUserPrefs() {
UserPrefs userPrefs = new UserPrefs();
userPrefs.setGuiSettings(new GuiSettings(1000, 500, 300, 100, "imposter"));
userPrefs.setGuiSettings(new GuiSettings(1000, 500, 300, 100, "material"));
userPrefs.setEndpointListFilePath(Paths.get("imposter.json"));
return userPrefs;
}
Expand Down

0 comments on commit 29195f4

Please sign in to comment.