Skip to content

Commit

Permalink
Fix: Tweak config values
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyah committed May 26, 2026
1 parent eb7fef7 commit b98c3bb
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ public enum ConfigValues {
/**
* Standard viewport width.
*/
VIEWPORT_WIDTH(1400),
VIEWPORT_WIDTH(800),

/**
* Standard viewport height.
*/
VIEWPORT_HEIGHT(800),
VIEWPORT_HEIGHT(700),

/**
* Minimum viewport width. The window cannot be resized smaller than this.
*/
MIN_VIEWPORT_WIDTH(1400),
MIN_VIEWPORT_WIDTH(800),

/**
* Minimum viewport height. The window cannot be resized smaller than this.
*/
MIN_VIEWPORT_HEIGHT(800);
MIN_VIEWPORT_HEIGHT(700);

/**
* Integer parameter of a config value.
Expand All @@ -46,4 +46,4 @@ public enum ConfigValues {
public int getValue() {
return value;
}
}
}

0 comments on commit b98c3bb

Please sign in to comment.