sway

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

commit 2fa767ab57c75aa21636fd88ccf6d6539c52d310
parent f2082a3d4c80e96c1e8c75bf8ca442786efb2153
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed, 24 Oct 2018 15:45:02 +0200

Merge pull request #2954 from RyanDwyer/cursor-rebase-after-focus-direction

Rebase the cursor after focusing in a direction
Diffstat:
Msway/commands/focus.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/sway/commands/focus.c b/sway/commands/focus.c @@ -294,6 +294,7 @@ struct cmd_results *cmd_focus(int argc, char **argv) { if (next_focus) { seat_set_focus(seat, next_focus); seat_consider_warp_to_focus(seat); + cursor_rebase(seat->cursor); } return cmd_results_new(CMD_SUCCESS, NULL, NULL);