aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-05-03 14:16:17 +0100
committerLibravatar emersion <contact@emersion.fr>2018-05-03 14:16:17 +0100
commit424006089e5a61ef7649c14324c3fb5c3bec32ca (patch)
tree64357bee2d71217132d83422a56f8599b69a9851 /sway/input/seat.c
parentMerge pull request #1905 from RyanDwyer/fix-title-width (diff)
downloadsway-424006089e5a61ef7649c14324c3fb5c3bec32ca.tar.gz
sway-424006089e5a61ef7649c14324c3fb5c3bec32ca.tar.zst
sway-424006089e5a61ef7649c14324c3fb5c3bec32ca.zip
Default to backend-wise input device mapping, if any
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c21
1 files changed, 15 insertions, 6 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index e8bd6b36..443fe367 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -263,18 +263,27 @@ struct sway_seat *seat_create(struct sway_input_manager *input,
263 263
264static void seat_apply_input_config(struct sway_seat *seat, 264static void seat_apply_input_config(struct sway_seat *seat,
265 struct sway_seat_device *sway_device) { 265 struct sway_seat_device *sway_device) {
266 const char *mapped_to_output = NULL;
267
266 struct input_config *ic = input_device_get_config( 268 struct input_config *ic = input_device_get_config(
267 sway_device->input_device); 269 sway_device->input_device);
268 if (!ic) { 270 if (ic != NULL) {
269 return; 271 wlr_log(L_DEBUG, "Applying input config to %s",
270 }
271 wlr_log(L_DEBUG, "Applying input config to %s",
272 sway_device->input_device->identifier); 272 sway_device->input_device->identifier);
273 if (ic->mapped_to_output) { 273
274 mapped_to_output = ic->mapped_to_output;
275 }
276
277 if (mapped_to_output == NULL) {
278 mapped_to_output = sway_device->input_device->wlr_device->output_name;
279 }
280 if (mapped_to_output != NULL) {
281 wlr_log(L_DEBUG, "Mapping input device %s to output %s",
282 sway_device->input_device->identifier, mapped_to_output);
274 struct sway_container *output = NULL; 283 struct sway_container *output = NULL;
275 for (int i = 0; i < root_container.children->length; ++i) { 284 for (int i = 0; i < root_container.children->length; ++i) {
276 struct sway_container *_output = root_container.children->items[i]; 285 struct sway_container *_output = root_container.children->items[i];
277 if (strcasecmp(_output->name, ic->mapped_to_output) == 0) { 286 if (strcasecmp(_output->name, mapped_to_output) == 0) {
278 output = _output; 287 output = _output;
279 break; 288 break;
280 } 289 }