diff options
author | Brian Ashworth <bosrsf04@gmail.com> | 2018-05-30 13:20:02 -0400 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2018-06-02 08:07:44 -0400 |
commit | 7c810dc344c28d1876c5ee158cb0806289d0f813 (patch) | |
tree | dbe756bceca42ea6f9a6cf5e5771037417bb64c3 /sway/input | |
parent | 2d480e754e8287ba747faf1b21d8ecb927d565a1 (diff) |
Make command block implementation generic
Diffstat (limited to 'sway/input')
-rw-r--r-- | sway/input/keyboard.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c index 420cefa6..d90655f2 100644 --- a/sway/input/keyboard.c +++ b/sway/input/keyboard.c @@ -98,7 +98,6 @@ static void keyboard_execute_command(struct sway_keyboard *keyboard, struct sway_binding *binding) { wlr_log(L_DEBUG, "running command for binding: %s", binding->command); - config_clear_handler_context(config); config->handler_context.seat = keyboard->seat_device->sway_seat; struct cmd_results *results = execute_command(binding->command, NULL); if (results->status != CMD_SUCCESS) { |