diff options
| author | shedaniel <daniel@shedaniel.me> | 2020-02-02 01:49:30 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2020-02-02 01:50:48 +0800 |
| commit | 129d287ddad825878af3b447f144ab38ccd1acf6 (patch) | |
| tree | f439892b1cda830519c5672bac188d547cae3b01 /src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java | |
| parent | ad60e45b9240785e1c90ab97177edc2dc4812dae (diff) | |
| download | RoughlyEnoughItems-129d287ddad825878af3b447f144ab38ccd1acf6.tar.gz RoughlyEnoughItems-129d287ddad825878af3b447f144ab38ccd1acf6.tar.bz2 RoughlyEnoughItems-129d287ddad825878af3b447f144ab38ccd1acf6.zip | |
3.3.18
Signed-off-by: shedaniel <daniel@shedaniel.me>
Diffstat (limited to 'src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java b/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java index efc483162..9fd4594bd 100644 --- a/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java +++ b/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java @@ -1,6 +1,6 @@ /* - * Roughly Enough Items by Danielshe. - * Licensed under the MIT License. + * Copyright (c) 2018, 2019, 2020 shedaniel + * Licensed under the MIT License (the "License"). */ package me.shedaniel.rei.impl; @@ -311,9 +311,9 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData { @Comment("Declares whether REI should append mod names to item stacks.") private boolean appendModNames = true; @Comment("Declares how the scrollbar in villager screen should act.") private boolean villagerScreenPermanentScrollBar = false; @Comment("Declares whether entry list widget is scrolled.") private boolean scrollingEntryListWidget = false; - private boolean snapToRows = false; - private boolean displayFavoritesOnTheLeft = true; - private boolean displayFavoritesTooltip = false; + @Comment("Declares whether scrolled entry list widget should snap to rows.") private boolean snapToRows = false; + @Comment("Declares the location of the favorites list.") private boolean displayFavoritesOnTheLeft = true; + @Comment("Declares whether favorites tooltip should be displayed.") private boolean displayFavoritesTooltip = false; @Comment("Declares whether favorites will be searched.") private boolean searchFavorites = true; @UsePercentage(min = 0.5, max = 4.0) private double entrySize = 1.0; private boolean useCompactTabs = true; |
