diff options
author | Juuz <6596629+Juuxel@users.noreply.github.com> | 2023-09-27 12:37:31 +0300 |
---|---|---|
committer | Juuz <6596629+Juuxel@users.noreply.github.com> | 2023-09-27 12:37:31 +0300 |
commit | e5b938c76154bed99cdc19d34bf0e4d0e8160853 (patch) | |
tree | 9c23422b38499801d785ef50df6cf540ce39c8ae /src/testMod | |
parent | 9eb05f0c8ac1207b28102f7cdb035ff076644323 (diff) | |
parent | d25b9444c277461c0d2effdff72d2d70d7792b6f (diff) | |
download | LibGui-e5b938c76154bed99cdc19d34bf0e4d0e8160853.tar.gz LibGui-e5b938c76154bed99cdc19d34bf0e4d0e8160853.tar.bz2 LibGui-e5b938c76154bed99cdc19d34bf0e4d0e8160853.zip |
Merge branch 'unstable/9.0'
# Conflicts:
# src/main/resources/fabric.mod.json
Diffstat (limited to 'src/testMod')
-rw-r--r-- | src/testMod/java/io/github/cottonmc/test/client/DarkModeTestGui.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/testMod/java/io/github/cottonmc/test/client/DarkModeTestGui.java b/src/testMod/java/io/github/cottonmc/test/client/DarkModeTestGui.java index 2caea5c..f9012d7 100644 --- a/src/testMod/java/io/github/cottonmc/test/client/DarkModeTestGui.java +++ b/src/testMod/java/io/github/cottonmc/test/client/DarkModeTestGui.java @@ -28,6 +28,7 @@ public final class DarkModeTestGui extends LightweightGuiDescription { root.add(new WButton(Text.literal("Button B")), 0, 1, 3, 1); root.add(new WText(Text.literal("Text")), 0, 2, 3, 1); root.add(new WLabeledSlider(1, 100, Text.literal("Slider A")), 3, 0, 3, 1); + root.add(new WLabeledSlider(1, 100, Axis.VERTICAL, Text.literal("Slider B")), 6, 0, 1, 3); root.add(new WSlider(1, 100, Axis.HORIZONTAL), 3, 1, 3, 1); root.add(new WLabel(Text.literal("Label")), 3, 2, 3, 1); root.add(new WScrollBar(Axis.HORIZONTAL), 0, 3, 3, 1); |