diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-19 14:00:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-19 14:00:03 +0200 |
commit | 96e3686ae882818edc35a14c207dfd97c40366d9 (patch) | |
tree | 2b898904e8c1e43417bfa92568bff23545ff642d /sway/commands/seat | |
parent | 19adc3ff2dc262ade0bc1a87895e49696224d5d0 (diff) | |
parent | 2e637b7368de565a85f77fbd03408f33b763dd7b (diff) | |
download | sway-96e3686ae882818edc35a14c207dfd97c40366d9.tar.xz |
Merge pull request #2875 from RedSoxFan/input-device-bindings
cmd_bind{sym,code}: Implement per-device bindings
Diffstat (limited to 'sway/commands/seat')
-rw-r--r-- | sway/commands/seat/cursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/seat/cursor.c b/sway/commands/seat/cursor.c index cd6630e0..595e9bc6 100644 --- a/sway/commands/seat/cursor.c +++ b/sway/commands/seat/cursor.c @@ -80,6 +80,6 @@ static struct cmd_results *press_or_release(struct sway_cursor *cursor, return cmd_results_new(CMD_INVALID, "cursor", expected_syntax); } } - dispatch_cursor_button(cursor, 0, button, state); + dispatch_cursor_button(cursor, NULL, 0, button, state); return cmd_results_new(CMD_SUCCESS, NULL, NULL); } |