diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-02 12:23:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-02 12:23:15 -0400 |
commit | 7e3aa1daa8b945b762d98bc67c660cdc6c94b72f (patch) | |
tree | d2b9dd4816efdf861e71bcd1eff6a70928e59dc6 /sway/input | |
parent | 122b96abed9955f78e3f157167d34312f5bb551d (diff) | |
parent | e3689dd5a93b4f4ae62637a2b81797335aafdcaf (diff) | |
download | sway-7e3aa1daa8b945b762d98bc67c660cdc6c94b72f.tar.xz |
Merge pull request #1693 from swaywm/move-cmd
Partially implement move command
Diffstat (limited to 'sway/input')
-rw-r--r-- | sway/input/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c index 99685052..8d22b684 100644 --- a/sway/input/keyboard.c +++ b/sway/input/keyboard.c @@ -97,8 +97,8 @@ static void keyboard_execute_command(struct sway_keyboard *keyboard, config->handler_context.seat = keyboard->seat_device->sway_seat; struct cmd_results *results = execute_command(binding->command, NULL); if (results->status != CMD_SUCCESS) { - wlr_log(L_DEBUG, "could not run command for binding: %s", - binding->command); + wlr_log(L_DEBUG, "could not run command for binding: %s (%s)", + binding->command, results->error); } free_cmd_results(results); } |