diff options
author | Tudor Brindus <me@tbrindus.ca> | 2020-12-05 23:58:57 -0500 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-12-06 09:38:49 +0100 |
commit | cc2c0d5966f67189be4cfc350514134d3f4c0f3c (patch) | |
tree | d267d5af6174ac6708503ab006747a41cd137532 /sway/input/seat.c | |
parent | b5cc11b2268820fd49151a5a868c5fff285a652c (diff) |
input/cursor: unhide cursor on synthetic input
Fixes #5847.
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r-- | sway/input/seat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c index 2b41d1cb..f899483d 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -1424,7 +1424,7 @@ void seat_apply_config(struct sway_seat *seat, wl_list_for_each(seat_device, &seat->devices, link) { seat_configure_device(seat, seat_device->input_device); - cursor_handle_activity(seat->cursor, + cursor_handle_activity_from_device(seat->cursor, seat_device->input_device->wlr_device); } } |