Skip to content

Commit 479e5e7

Browse files
Fix Gui#notifyWindows(keys) only notifying for first key
1 parent 4c00a4d commit 479e5e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

invui/src/main/java/xyz/xenondevs/invui/gui/AbstractGui.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ public void notifyWindows(char key, char... keys) {
800800
return;
801801

802802
for (char c : ArrayUtils.concat(key, keys)) {
803-
for (Slot slot : matrix.getSlots(key)) {
803+
for (Slot slot : matrix.getSlots(c)) {
804804
notifyWindows(slot);
805805
}
806806
}

0 commit comments

Comments
 (0)