1
0
mirror of https://github.com/chylex/Better-Controls.git synced 2025-05-04 07:34:06 +02:00

Fix not showing key binding conflicts since 1.17

This commit is contained in:
chylex 2021-10-03 12:04:30 +02:00
parent 6c2bf71472
commit 4e12f8b43c
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548

View File

@ -70,7 +70,7 @@ public final class KeyBindingWidget extends Button {
if (!binding.isUnbound()) {
for (final KeyMapping other : OPTIONS.keyMappings) {
if (binding != other && binding.equals(other)) {
if (binding != other && binding.same(other)) {
hasConflict = true;
break;
}