aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authormartimavocado <39881008+martimavocado@users.noreply.github.com>2024-02-10 00:31:29 +0000
committerGitHub <noreply@github.com>2024-02-10 01:31:29 +0100
commit8beaf4b7694892b80a5254780dbb4d0477af9186 (patch)
tree4738350df2f56eb5ebca228c701732cad3fa0d1e /src/main/java/at/hannibal2/skyhanni/config
parent791f12f2ee1ad147ddb12abde5a74bd3b0f4bdce (diff)
downloadskyhanni-8beaf4b7694892b80a5254780dbb4d0477af9186.tar.gz
skyhanni-8beaf4b7694892b80a5254780dbb4d0477af9186.tar.bz2
skyhanni-8beaf4b7694892b80a5254780dbb4d0477af9186.zip
Added option to hide tasks after they've been completed in Crimson Isle Reputation Helper. #989
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/ReputationHelperConfig.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/ReputationHelperConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/ReputationHelperConfig.java
index 0fb516858..a17323082 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/ReputationHelperConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/ReputationHelperConfig.java
@@ -8,6 +8,7 @@ import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean;
import io.github.moulberry.moulconfig.annotations.ConfigEditorDropdown;
import io.github.moulberry.moulconfig.annotations.ConfigEditorKeybind;
import io.github.moulberry.moulconfig.annotations.ConfigOption;
+import io.github.moulberry.moulconfig.observer.Property;
import org.lwjgl.input.Keyboard;
public class ReputationHelperConfig {
@@ -24,6 +25,11 @@ public class ReputationHelperConfig {
public boolean useHotkey = false;
@Expose
+ @ConfigOption(name = "Hide Completed", desc = "Hides tasks after they've been completed.")
+ @ConfigEditorBoolean
+ public Property<Boolean> hideComplete = Property.of(true);
+
+ @Expose
@ConfigOption(name = "Hotkey", desc = "Press this hotkey to show the Reputation Helper.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int hotkey = Keyboard.KEY_NONE;