aboutsummaryrefslogtreecommitdiff
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2018-04-02 12:16:00 -0400
committerTony Crisci <tony@dubstepdish.com>2018-04-02 12:16:00 -0400
commit35445b40a273ca1548915e1f17097a45aebbd44c (patch)
tree34ea2de2accaa52945318c20dcba50ea1cdd3258 /sway/input/seat.c
parenta82c107c7613548a3ae0e75bb951ba57b7d2f22b (diff)
remove unused attachment config
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 38b617b7..27636c1e 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -202,13 +202,6 @@ void seat_configure_device(struct sway_seat *seat,
return;
}
- struct seat_config *seat_config = seat_get_config(seat);
-
- if (seat_config) {
- seat_device->attachment_config =
- seat_config_get_attachment(seat_config, input_device->identifier);
- }
-
switch (input_device->wlr_device->type) {
case WLR_INPUT_DEVICE_POINTER:
seat_configure_pointer(seat, seat_device);
@@ -426,9 +419,6 @@ struct sway_container *seat_get_focus_by_type(struct sway_seat *seat,
void seat_apply_config(struct sway_seat *seat,
struct seat_config *seat_config) {
struct sway_seat_device *seat_device = NULL;
- wl_list_for_each(seat_device, &seat->devices, link) {
- seat_device->attachment_config = NULL;
- }
if (!seat_config) {
return;