aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2020-01-12 21:34:58 +0800
committershedaniel <daniel@shedaniel.me>2020-01-12 21:34:58 +0800
commit14f068d3290db5b0210b49e2fb1d65d760b19002 (patch)
tree1dc4993956690da65ddb7f0defd0f4b3e6acf910 /src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java
parent421d0b0abd703367d6078f344def91ddfa24bdec (diff)
downloadRoughlyEnoughItems-14f068d3290db5b0210b49e2fb1d65d760b19002.tar.gz
RoughlyEnoughItems-14f068d3290db5b0210b49e2fb1d65d760b19002.tar.bz2
RoughlyEnoughItems-14f068d3290db5b0210b49e2fb1d65d760b19002.zip
improved recipe screen type setting
Diffstat (limited to 'src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java')
-rw-r--r--src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java b/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java
index 280af5701..8ef87e6e4 100644
--- a/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java
+++ b/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java
@@ -285,10 +285,10 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData {
}
public static class Appearance {
+ @UseSpecialRecipeTypeScreen private RecipeScreenType recipeScreenType = RecipeScreenType.UNSET;
@Comment("The ordering of the items on the item panel.") @UseEnumSelectorInstead
private ItemListOrderingConfig itemListOrdering = ItemListOrderingConfig.REGISTRY_ASCENDING;
@Comment("Declares the appearance of REI windows.") private boolean darkTheme = false;
- @Comment("The ordering of the items on the item panel.") @UseEnumSelectorInstead private RecipeScreenType recipeScreenType = RecipeScreenType.UNSET;
@Comment("Declares the position of the search field.") @UseEnumSelectorInstead
private SearchFieldLocation searchFieldLocation = SearchFieldLocation.CENTER;
@Comment("Declares the position of the item list panel.") private boolean mirrorItemPanel = false;