diff --git a/sway/input/seat.c b/sway/input/seat.c index 6739c1635..920742e96 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -723,7 +723,7 @@ static void seat_configure_tablet_tool(struct sway_seat *seat, static void seat_configure_tablet_pad(struct sway_seat *seat, struct sway_seat_device *sway_device) { - if (!sway_device->tablet) { + if (!sway_device->tablet_pad) { sway_device->tablet_pad = sway_tablet_pad_create(seat, sway_device); } sway_configure_tablet_pad(sway_device->tablet_pad); diff --git a/sway/input/tablet.c b/sway/input/tablet.c index b0d4d0c64..8d6e95b3e 100644 --- a/sway/input/tablet.c +++ b/sway/input/tablet.c @@ -56,8 +56,10 @@ void sway_configure_tablet(struct sway_tablet *tablet) { seat_configure_xcursor(seat); } - tablet->tablet_v2 = - wlr_tablet_create(server.tablet_v2, seat->wlr_seat, device); + if (!tablet->tablet_v2) { + tablet->tablet_v2 = + wlr_tablet_create(server.tablet_v2, seat->wlr_seat, device); + } /* Search for a sibling tablet pad */ if (!wlr_input_device_is_libinput(device)) { @@ -238,8 +240,10 @@ void sway_configure_tablet_pad(struct sway_tablet_pad *tablet_pad) { tablet_pad->seat_device->input_device->wlr_device; struct sway_seat *seat = tablet_pad->seat_device->sway_seat; - tablet_pad->tablet_v2_pad = - wlr_tablet_pad_create(server.tablet_v2, seat->wlr_seat, device); + if (!tablet_pad->tablet_v2_pad) { + tablet_pad->tablet_v2_pad = + wlr_tablet_pad_create(server.tablet_v2, seat->wlr_seat, device); + } wl_list_remove(&tablet_pad->attach.link); tablet_pad->attach.notify = handle_tablet_pad_attach;