Skip to content

Commit 3f8216c

Browse files
Fix default StonecutterWindow buttons gui not having correct width
1 parent 87db5a8 commit 3f8216c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

invui/src/main/java/xyz/xenondevs/invui/window/StonecutterWindowImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ static final class BuilderImpl
143143
{
144144

145145
private Supplier<? extends Gui> upperGuiSupplier = () -> Gui.empty(2, 1);
146-
private Supplier<? extends Gui> butonsGuiSupplier = () -> Gui.empty(0, 0);
146+
private Supplier<? extends Gui> butonsGuiSupplier = () -> Gui.empty(4, 0);
147147
private List<BiConsumer<? super Integer, ? super Integer>> selectedSlotChangeHandlers = new ArrayList<>();
148148
private MutableProperty<Integer> selectedSlot = MutableProperty.of(-1);
149149

0 commit comments

Comments
 (0)