aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 8fe82b46..94503687 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -120,6 +120,7 @@ void sway_seat_configure_device(struct sway_seat *seat,
120void sway_seat_add_device(struct sway_seat *seat, 120void sway_seat_add_device(struct sway_seat *seat,
121 struct sway_input_device *input_device) { 121 struct sway_input_device *input_device) {
122 if (sway_seat_get_device(seat, input_device)) { 122 if (sway_seat_get_device(seat, input_device)) {
123 sway_seat_configure_device(seat, input_device);
123 return; 124 return;
124 } 125 }
125 126
@@ -246,7 +247,5 @@ void sway_seat_set_config(struct sway_seat *seat,
246 seat_device->attachment_config = 247 seat_device->attachment_config =
247 seat_config_get_attachment(seat_config, 248 seat_config_get_attachment(seat_config,
248 seat_device->input_device->identifier); 249 seat_device->input_device->identifier);
249 sway_seat_configure_device(seat, seat_device->input_device);
250 } 250 }
251
252} 251}