aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/tablet.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/tablet.c')
-rw-r--r--sway/input/tablet.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/sway/input/tablet.c b/sway/input/tablet.c
index b0d4d0c6..8d6e95b3 100644
--- a/sway/input/tablet.c
+++ b/sway/input/tablet.c
@@ -56,8 +56,10 @@ void sway_configure_tablet(struct sway_tablet *tablet) {
56 seat_configure_xcursor(seat); 56 seat_configure_xcursor(seat);
57 } 57 }
58 58
59 tablet->tablet_v2 = 59 if (!tablet->tablet_v2) {
60 wlr_tablet_create(server.tablet_v2, seat->wlr_seat, device); 60 tablet->tablet_v2 =
61 wlr_tablet_create(server.tablet_v2, seat->wlr_seat, device);
62 }
61 63
62 /* Search for a sibling tablet pad */ 64 /* Search for a sibling tablet pad */
63 if (!wlr_input_device_is_libinput(device)) { 65 if (!wlr_input_device_is_libinput(device)) {
@@ -238,8 +240,10 @@ void sway_configure_tablet_pad(struct sway_tablet_pad *tablet_pad) {
238 tablet_pad->seat_device->input_device->wlr_device; 240 tablet_pad->seat_device->input_device->wlr_device;
239 struct sway_seat *seat = tablet_pad->seat_device->sway_seat; 241 struct sway_seat *seat = tablet_pad->seat_device->sway_seat;
240 242
241 tablet_pad->tablet_v2_pad = 243 if (!tablet_pad->tablet_v2_pad) {
242 wlr_tablet_pad_create(server.tablet_v2, seat->wlr_seat, device); 244 tablet_pad->tablet_v2_pad =
245 wlr_tablet_pad_create(server.tablet_v2, seat->wlr_seat, device);
246 }
243 247
244 wl_list_remove(&tablet_pad->attach.link); 248 wl_list_remove(&tablet_pad->attach.link);
245 tablet_pad->attach.notify = handle_tablet_pad_attach; 249 tablet_pad->attach.notify = handle_tablet_pad_attach;