From: Jens Peters Date: Fri, 12 Jan 2024 23:25:19 +0000 (+0100) Subject: seat: re-map touch to output on reconfigure X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=0eb1ae4d6637631dd7b2a571d17f18245b4e54bd;p=proto%2Flabwc.git seat: re-map touch to output on reconfigure --- 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;