diff options
-rw-r--r-- | sway/handlers.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/handlers.c b/sway/handlers.c index 330f6c0c..93b124bd 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -302,7 +302,8 @@ static bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifier struct sway_mode *mode = config->current_mode; - uint32_t sym = tolower(wlc_keyboard_get_keysym_for_key(key, modifiers)); + struct wlc_modifiers no_mods = { 0, 0 }; + uint32_t sym = tolower(wlc_keyboard_get_keysym_for_key(key, &no_mods)); int i; |