|
@@ -28,11 +28,10 @@ public final class KeyHandler
|
|
|
|
|
|
public static void rebind(KeyBinding binding, int key)
|
|
public static void rebind(KeyBinding binding, int key)
|
|
{
|
|
{
|
|
- if(BINDINGS.containsKey(key))
|
|
|
|
|
|
+ if(BINDINGS.get(binding.getKey()) == binding)
|
|
{
|
|
{
|
|
- return;
|
|
|
|
|
|
+ BINDINGS.remove(binding.getKey());
|
|
}
|
|
}
|
|
- BINDINGS.remove(binding.getKey());
|
|
|
|
binding.setKey(key);
|
|
binding.setKey(key);
|
|
BINDINGS.put(key, binding);
|
|
BINDINGS.put(key, binding);
|
|
}
|
|
}
|
|
@@ -42,7 +41,10 @@ public final class KeyHandler
|
|
if(rebind != null)
|
|
if(rebind != null)
|
|
{
|
|
{
|
|
rebind.setIsRebinding(false);
|
|
rebind.setIsRebinding(false);
|
|
- rebind(rebind, key);
|
|
|
|
|
|
+ if(!BINDINGS.containsKey(key))
|
|
|
|
+ {
|
|
|
|
+ rebind(rebind, key);
|
|
|
|
+ }
|
|
rebind = null;
|
|
rebind = null;
|
|
return;
|
|
return;
|
|
}
|
|
}
|