Add input "identifier" map_to_output "identifier"

This commit is contained in:
Drew DeVault 2018-04-08 14:15:13 -04:00
parent 26e5974496
commit 0e3ddf255e
8 changed files with 87 additions and 1 deletions

View file

@ -88,6 +88,10 @@ void merge_input_config(struct input_config *dst, struct input_config *src) {
free(dst->xkb_variant);
dst->xkb_variant = strdup(src->xkb_variant);
}
if (src->mapped_output) {
free(dst->mapped_output);
dst->mapped_output = strdup(src->mapped_output);
}
}
struct input_config *copy_input_config(struct input_config *ic) {