aboutsummaryrefslogtreecommitdiff
path: root/sway/input
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input')
-rw-r--r--sway/input/input-manager.c7
-rw-r--r--sway/input/seat.c7
2 files changed, 8 insertions, 6 deletions
diff --git a/sway/input/input-manager.c b/sway/input/input-manager.c
index 7b19991b..2d119cf2 100644
--- a/sway/input/input-manager.c
+++ b/sway/input/input-manager.c
@@ -174,7 +174,8 @@ static void input_add_notify(struct wl_listener *listener, void *data) {
for (int i = 0; i < config->input_configs->length; ++i) {
struct input_config *input_config = config->input_configs->items[i];
if (strcmp(input_config->identifier, input_device->identifier) == 0) {
- input_device->config = input_config;
+ free_input_config(input_device->config);
+ input_device->config = copy_input_config(input_config);
break;
}
}
@@ -240,6 +241,7 @@ static void input_remove_notify(struct wl_listener *listener, void *data) {
}
wl_list_remove(&input_device->link);
+ free_input_config(input_device->config);
free(input_device->identifier);
free(input_device);
}
@@ -293,7 +295,8 @@ void sway_input_manager_apply_input_config(struct sway_input_manager *input,
struct sway_input_device *input_device = NULL;
wl_list_for_each(input_device, &input->devices, link) {
if (strcmp(input_device->identifier, input_config->identifier) == 0) {
- input_device->config = input_config;
+ free_input_config(input_device->config);
+ input_device->config = copy_input_config(input_config);
if (input_device->wlr_device->type == WLR_INPUT_DEVICE_POINTER) {
sway_input_manager_libinput_config_pointer(input_device);
diff --git a/sway/input/seat.c b/sway/input/seat.c
index ae6dc7c4..e9b375e0 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -241,6 +241,7 @@ void sway_seat_set_focus(struct sway_seat *seat, swayc_t *container) {
void sway_seat_set_config(struct sway_seat *seat,
struct seat_config *seat_config) {
// clear configs
+ free_seat_config(seat->config);
seat->config = NULL;
struct sway_seat_device *seat_device = NULL;
@@ -253,11 +254,9 @@ void sway_seat_set_config(struct sway_seat *seat,
}
// add configs
- seat->config = seat_config;
+ seat->config = copy_seat_config(seat_config);
wl_list_for_each(seat_device, &seat->devices, link) {
- seat_device->attachment_config =
- seat_config_get_attachment(seat_config,
- seat_device->input_device->identifier);
+ sway_seat_configure_device(seat, seat_device->input_device);
}
}