diff options
author | Drew DeVault <[email protected]> | 2018-03-31 15:13:27 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2018-03-31 15:20:43 -0400 |
commit | f2332dc75c05a62f87ba290433f12f4ce7f467ec (patch) | |
tree | 67c2f8e9d67cb45a9c18bbea17eb139f4c7eed82 /sway/input/cursor.c | |
parent | b9d2983324c91f0a2805b1f10afcf2a929f939b4 (diff) |
Address review feedback
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r-- | sway/input/cursor.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 2a096033..4a3f558d 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -120,9 +120,6 @@ static struct sway_container *container_at_cursor(struct sway_cursor *cursor, return NULL; } -void _sway_seat_set_focus(struct sway_seat *seat, - struct sway_container *container, bool warp); - static void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time) { struct wlr_seat *seat = cursor->seat->wlr_seat; @@ -130,7 +127,7 @@ static void cursor_send_pointer_motion(struct sway_cursor *cursor, double sx, sy; struct sway_container *c = container_at_cursor(cursor, &surface, &sx, &sy); if (c && config->focus_follows_mouse) { - _sway_seat_set_focus(cursor->seat, c, false); + sway_seat_set_focus_warp(cursor->seat, c, false); } // reset cursor if switching between clients |