mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 05:54:11 +01:00
apply_output_config: use list_seq_find() to find config
This commit is contained in:
parent
7d82cd9c0a
commit
ffdfaaa985
@ -299,12 +299,10 @@ void apply_output_config(struct output_config *oc, swayc_t *output) {
|
|||||||
|
|
||||||
if (!oc || !oc->background) {
|
if (!oc || !oc->background) {
|
||||||
// Look for a * config for background
|
// Look for a * config for background
|
||||||
int i;
|
int i = list_seq_find(config->output_configs, output_name_cmp, "*");
|
||||||
for (i = 0; i < config->output_configs->length; ++i) {
|
if (i >= 0) {
|
||||||
oc = config->output_configs->items[i];
|
oc = config->output_configs->items[i];
|
||||||
if (strcasecmp("*", oc->name) == 0) {
|
} else {
|
||||||
break;
|
|
||||||
}
|
|
||||||
oc = NULL;
|
oc = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user