From 0eb1ae4d6637631dd7b2a571d17f18245b4e54bd Mon Sep 17 00:00:00 2001 From: Jens Peters Date: Sat, 13 Jan 2024 00:25:19 +0100 Subject: [PATCH] seat: re-map touch to output on reconfigure --- src/seat.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/seat.c b/src/seat.c index 79a49354..eb42b744 100644 --- a/src/seat.c +++ b/src/seat.c @@ -522,6 +522,9 @@ seat_reconfigure(struct server *server) case WLR_INPUT_DEVICE_POINTER: configure_libinput(input->wlr_input_device); break; + case WLR_INPUT_DEVICE_TOUCH: + map_touch_to_output(seat, input->wlr_input_device); + break; case WLR_INPUT_DEVICE_TABLET_TOOL: map_input_to_output(seat, input->wlr_input_device, rc.tablet.output_name); break;