aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/config.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sway/config.c b/sway/config.c
index bb9142c0..dd466e5b 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -299,12 +299,10 @@ void apply_output_config(struct output_config *oc, swayc_t *output) {
299 299
300 if (!oc || !oc->background) { 300 if (!oc || !oc->background) {
301 // Look for a * config for background 301 // Look for a * config for background
302 int i; 302 int i = list_seq_find(config->output_configs, output_name_cmp, "*");
303 for (i = 0; i < config->output_configs->length; ++i) { 303 if (i >= 0) {
304 oc = config->output_configs->items[i]; 304 oc = config->output_configs->items[i];
305 if (strcasecmp("*", oc->name) == 0) { 305 } else {
306 break;
307 }
308 oc = NULL; 306 oc = NULL;
309 } 307 }
310 } 308 }