aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sway/input/seat.c4
-rw-r--r--sway/ipc-json.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index f4098eb0..776d5766 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -392,6 +392,7 @@ static void seat_update_capabilities(struct sway_seat *seat) {
caps |= WL_SEAT_CAPABILITY_POINTER;
break;
case WLR_INPUT_DEVICE_TABLET_PAD:
+ case WLR_INPUT_DEVICE_SWITCH:
break;
}
}
@@ -513,6 +514,9 @@ void seat_configure_device(struct sway_seat *seat,
case WLR_INPUT_DEVICE_TABLET_PAD:
wlr_log(WLR_DEBUG, "TODO: configure tablet pad");
break;
+ case WLR_INPUT_DEVICE_SWITCH:
+ wlr_log(WLR_DEBUG, "TODO: configure switch device");
+ break;
}
}
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index fc631373..0c94fb63 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -93,6 +93,8 @@ static const char *ipc_json_device_type_description(struct sway_input_device *de
return "tablet_tool";
case WLR_INPUT_DEVICE_TABLET_PAD:
return "tablet_pad";
+ case WLR_INPUT_DEVICE_SWITCH:
+ return "switch";
}
return "unknown";
}