mirror of
https://github.com/swaywm/sway.git
synced 2026-04-02 07:15:50 -04:00
Combine output_by_name and output_by_identifier
This combines `output_by_name` and `output_by_identifier` into a single function called `output_by_name_or_id`. This allows for output identifiers to be used in all commands, simplifies the logic of the callers, and is more efficient since worst case is a single pass through the output list.
This commit is contained in:
parent
477bca5e28
commit
88d96bc41f
8 changed files with 22 additions and 37 deletions
|
|
@ -428,7 +428,7 @@ static void seat_apply_input_config(struct sway_seat *seat,
|
|||
if (mapped_to_output != NULL) {
|
||||
wlr_log(WLR_DEBUG, "Mapping input device %s to output %s",
|
||||
sway_device->input_device->identifier, mapped_to_output);
|
||||
struct sway_output *output = output_by_name(mapped_to_output);
|
||||
struct sway_output *output = output_by_name_or_id(mapped_to_output);
|
||||
if (output) {
|
||||
wlr_cursor_map_input_to_output(seat->cursor->cursor,
|
||||
sway_device->input_device->wlr_device, output->wlr_output);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue