diff options
Diffstat (limited to 'src/testmod/java/dev/isxander/yacl')
-rw-r--r-- | src/testmod/java/dev/isxander/yacl/test/config/GuiTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/testmod/java/dev/isxander/yacl/test/config/GuiTest.java b/src/testmod/java/dev/isxander/yacl/test/config/GuiTest.java index 1ab4f1d..18d2a3c 100644 --- a/src/testmod/java/dev/isxander/yacl/test/config/GuiTest.java +++ b/src/testmod/java/dev/isxander/yacl/test/config/GuiTest.java @@ -57,7 +57,6 @@ public class GuiTest { .group(OptionGroup.createBuilder() .name(Component.literal("Boolean Controllers")) .tooltip(Component.literal("Test!")) - .collapsed(true) .option(Option.createBuilder(boolean.class) .name(Component.literal("Boolean Toggle")) .tooltip(value -> Component.literal("A simple toggle button that contains the value '" + value + "'")) @@ -72,6 +71,8 @@ public class GuiTest { .option(Option.createBuilder(boolean.class) .name(Component.literal("Custom Boolean Toggle")) .tooltip(Component.literal("You can customize these controllers like this!")) + .tooltip(Component.empty()) + .tooltip(opt -> Component.empty()) .binding( defaults.customBooleanToggle, () -> config.customBooleanToggle, |