diff options
author | Konstantin Pospelov <kupospelov@gmail.com> | 2019-02-20 14:54:59 +0300 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2019-04-26 20:56:48 +0300 |
commit | ddf63ffabefd740bf2afa1addaf6e859d65aba6a (patch) | |
tree | d9bbf2dbe7ade0b7c4121a3afcaa2bfd4b5488f9 /sway/commands/input.c | |
parent | d27a5e1cb0f14e939d47497ebc49cfb422cc947b (diff) |
bindsym: consider xkb_rule_names for --to-code
Diffstat (limited to 'sway/commands/input.c')
-rw-r--r-- | sway/commands/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/input.c b/sway/commands/input.c index 2de07de6..0195082c 100644 --- a/sway/commands/input.c +++ b/sway/commands/input.c @@ -48,7 +48,7 @@ static void retranslate_keysyms(struct input_config *input_config) { if (ic->xkb_layout) { // this is the first config with xkb_layout if (ic->identifier == input_config->identifier) { - translate_keysyms(ic->xkb_layout); + translate_keysyms(ic); } return; |