From f8b260d4a1295df68ef1ff7db89f21e6032d64c7 Mon Sep 17 00:00:00 2001 From: Mikkel Oscar Lyderik Date: Sat, 9 Jan 2016 17:40:19 +0100 Subject: Add support for bincode command If a bindsym and bincode maps to the same combination, the last one will overwrite any previous mappings. --- sway/input_state.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sway/input_state.c') 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; } -- cgit v1.2.3