From 8de5d7e653ec1ccbf2a50e20ed4a7fffbc1efaa2 Mon Sep 17 00:00:00 2001 From: Jens Peters Date: Mon, 8 Jan 2024 18:45:49 +0100 Subject: [PATCH] seat: re-map tablet to output on reconfigure --- src/seat.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/seat.c b/src/seat.c index 4ca8d8b7..81f59bda 100644 --- a/src/seat.c +++ b/src/seat.c @@ -515,6 +515,9 @@ seat_reconfigure(struct server *server) case WLR_INPUT_DEVICE_POINTER: configure_libinput(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; default: break; }