From 1d4961650fc390636a61e267054c4127564c053c Mon Sep 17 00:00:00 2001 From: Jens Peters Date: Fri, 19 Jan 2024 10:12:44 +0100 Subject: [PATCH] seat: re-map pointer to output on reconfigure Makes testing easier, also consistent with other devices types on reconfigure. --- src/seat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/seat.c b/src/seat.c index c0385108..95b8db84 100644 --- a/src/seat.c +++ b/src/seat.c @@ -536,6 +536,7 @@ seat_reconfigure(struct server *server) break; case WLR_INPUT_DEVICE_POINTER: configure_libinput(input->wlr_input_device); + map_pointer_to_output(seat, input->wlr_input_device); break; case WLR_INPUT_DEVICE_TOUCH: configure_libinput(input->wlr_input_device);