diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-05-20 23:31:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-20 23:31:10 -0400 |
commit | a9733d96f9c6b2699ce69be34e4d0304d7744ebf (patch) | |
tree | 483fbc00ce738270067487978199b670e970893a /sway/commands/border.c | |
parent | cf3ab1f45f29c62768975d64f38a7734372e4999 (diff) | |
parent | 82cd55a67006a2817daa466fd2a56e3e5aa11e17 (diff) |
Merge pull request #2012 from RedSoxFan/fix-border-changing-focus
Fix border commands from changing focus
Diffstat (limited to 'sway/commands/border.c')
-rw-r--r-- | sway/commands/border.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/border.c b/sway/commands/border.c index 1eb06a21..4ba361da 100644 --- a/sway/commands/border.c +++ b/sway/commands/border.c @@ -41,7 +41,7 @@ struct cmd_results *cmd_border(int argc, char **argv) { struct sway_seat *seat = input_manager_current_seat(input_manager); if (seat->cursor) { - cursor_send_pointer_motion(seat->cursor, 0); + cursor_send_pointer_motion(seat->cursor, 0, false); } return cmd_results_new(CMD_SUCCESS, NULL, NULL); |