aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com>2024-07-30 16:49:24 +1000
committerGitHub <noreply@github.com>2024-07-30 08:49:24 +0200
commitb7bc672f1bbf18d8e5001e27cb7cff7cb87a589a (patch)
tree62823a1fc064097abedd048b4d44bc6531f033c9
parentfed1051b8419e141287c0cebd16cb81b3e4fa6dc (diff)
downloadnotenoughupdates-b7bc672f1bbf18d8e5001e27cb7cff7cb87a589a.tar.gz
notenoughupdates-b7bc672f1bbf18d8e5001e27cb7cff7cb87a589a.tar.bz2
notenoughupdates-b7bc672f1bbf18d8e5001e27cb7cff7cb87a589a.zip
Add gui scale options up to 8x (#1279)
* add gui scale options up to 8x * add note
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/LocationEdit.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/LocationEdit.java b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/LocationEdit.java
index 723d6ae2..82de5b6d 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/LocationEdit.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/LocationEdit.java
@@ -42,10 +42,11 @@ public class LocationEdit {
@Expose
@ConfigOption(
name = "Edit Gui Scale",
- desc = "Change the size of NEU's overlays"
+ desc = "Change the size of NEU's overlays.\n" +
+ "§c4x and higher only supported on large monitors (4k res)"
)
@ConfigEditorDropdown(
- values = {"Default", "Small", "Normal", "Large", "Auto"}
+ values = {"Default", "Small", "Normal", "Large", "Auto", "4x", "5x", "6x", "7x", "8x"}
)
public int guiScale = 0;