mirror of
https://github.com/swaywm/sway.git
synced 2025-11-25 06:59:48 -05:00
Add input "identifier" map_to_output "identifier"
This commit is contained in:
parent
26e5974496
commit
0e3ddf255e
8 changed files with 87 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue