summaryrefslogtreecommitdiff
path: root/sway/input_state.c
diff options
context:
space:
mode:
authorMikkel Oscar Lyderik <[email protected]>2016-01-09 17:40:19 +0100
committerMikkel Oscar Lyderik <[email protected]>2016-01-09 18:07:47 +0100
commitf8b260d4a1295df68ef1ff7db89f21e6032d64c7 (patch)
tree228810591abade5a021f6b2ea1da8f22826f4ee9 /sway/input_state.c
parentcb8ac7fd4a0c8c11f97cc913391c4d04a7b4277b (diff)
Add support for bincode command
If a bindsym and bincode maps to the same combination, the last one will overwrite any previous mappings.
Diffstat (limited to 'sway/input_state.c')
-rw-r--r--sway/input_state.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/input_state.c b/sway/input_state.c
index 86868083..41ec5712 100644
--- a/sway/input_state.c
+++ b/sway/input_state.c
@@ -73,6 +73,9 @@ static uint8_t find_key(uint32_t key_sym, uint32_t key_code, bool update) {
key_state_array[i].alt_sym = key_sym;
break;
}
+ if (key_sym == 0 && key_code != 0 && key_state_array[i].key_code == key_code) {
+ break;
+ }
}
return i;
}