sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 8daea2bfec4a92babe4ffa89eb28c8f9ba92cf84
parent cfdb614e84ff6559897057c501b8ae530a699543
Author: emersion <contact@emersion.fr>
Date:   Wed,  9 Jan 2019 09:59:09 +0100

Merge pull request #3390 from RedSoxFan/execute-seat

cmd_bind: pass the seat to execute_command
Diffstat:
Msway/commands/bind.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sway/commands/bind.c b/sway/commands/bind.c @@ -312,8 +312,7 @@ struct cmd_results *cmd_bindcode(int argc, char **argv) { void seat_execute_command(struct sway_seat *seat, struct sway_binding *binding) { wlr_log(WLR_DEBUG, "running command for binding: %s", binding->command); - config->handler_context.seat = seat; - list_t *res_list = execute_command(binding->command, NULL, NULL); + list_t *res_list = execute_command(binding->command, seat, NULL); bool success = true; for (int i = 0; i < res_list->length; ++i) { struct cmd_results *results = res_list->items[i];