From 129d287ddad825878af3b447f144ab38ccd1acf6 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Sun, 2 Feb 2020 01:49:30 +0800 Subject: 3.3.18 Signed-off-by: shedaniel --- src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java') 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; -- cgit