From b98c3bb74021e77c200af8958a2a6c2d0879b0cc Mon Sep 17 00:00:00 2001 From: = Date: Tue, 26 May 2026 15:06:11 +0200 Subject: [PATCH] Fix: Tweak config values --- .../idi/idatt2003/g40/mappe/utils/ConfigValues.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/utils/ConfigValues.java b/src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/utils/ConfigValues.java index e2ebb5b..504e90e 100644 --- a/src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/utils/ConfigValues.java +++ b/src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/utils/ConfigValues.java @@ -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. @@ -46,4 +46,4 @@ public enum ConfigValues { public int getValue() { return value; } -} \ No newline at end of file +}