From 883738ac49e261eb1b9cfbd68a14900cb4450cf2 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Mon, 16 Nov 2020 01:36:17 +0800 Subject: Remove resize dynamically Signed-off-by: shedaniel --- .../src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java') diff --git a/RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java b/RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java index 1bea42943..52352366a 100644 --- a/RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java +++ b/RoughlyEnoughItems-runtime/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java @@ -341,7 +341,7 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData { @Override public boolean shouldResizeDynamically() { - return advanced.accessibility.resizeDynamically; + return false; } @ApiStatus.Experimental @@ -469,7 +469,6 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData { @Comment("Declares how the scrollbar in villager screen should act.") private boolean villagerScreenPermanentScrollBar = false; private boolean toastDisplayedOnCopyIdentifier = true; @Comment("Declares whether REI should use compact tabs for categories.") private boolean useCompactTabs = true; - @Comment("Declares whether REI should resize its recipe window dynamically") private boolean resizeDynamically = false; } public static class Search { -- cgit