commit be14cd96cd81270b3a34742f9a25fe21adf4f595 parent 6a1c176d14232a235ec30ce67ce87f3e549a6121 Author: 33KK <marko@pepega.club> Date: Sun, 11 Jun 2023 11:36:30 +0200 Fix `bindsym --to-code` not respecting input configs Fixes #7535 Diffstat:
| M | sway/input/input-manager.c | | | 12 | ++++++++++++ |
1 file changed, 12 insertions(+), 0 deletions(-)
diff --git a/sway/input/input-manager.c b/sway/input/input-manager.c @@ -532,6 +532,18 @@ static void retranslate_keysyms(struct input_config *input_config) { return; } } + + for (int i = 0; i < config->input_type_configs->length; ++i) { + struct input_config *ic = config->input_type_configs->items[i]; + if (ic->xkb_layout || ic->xkb_file) { + // this is the first config with xkb_layout or xkb_file + if (ic->identifier == input_config->identifier) { + translate_keysyms(ic); + } + + return; + } + } } static void input_manager_configure_input(