From: Jens Peters Date: Sun, 7 Jan 2024 21:20:38 +0000 (+0100) Subject: seat: change order X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=cef2214023c3a5fc42626422762f1890a8f5cb77;p=proto%2Flabwc.git seat: change order More in line with other functions. --- diff --git a/src/seat.c b/src/seat.c index b8fb636d..496f219f 100644 --- a/src/seat.c +++ b/src/seat.c @@ -351,12 +351,12 @@ new_input_notify(struct wl_listener *listener, void *data) case WLR_INPUT_DEVICE_TOUCH: input = new_touch(seat, device); break; - case WLR_INPUT_DEVICE_TABLET_PAD: - input = new_tablet_pad(seat, device); - break; case WLR_INPUT_DEVICE_TABLET_TOOL: input = new_tablet(seat, device); break; + case WLR_INPUT_DEVICE_TABLET_PAD: + input = new_tablet_pad(seat, device); + break; default: wlr_log(WLR_INFO, "unsupported input device"); return;