From 6271abd644da15070d29d2d06bc527f89a799375 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 8 Oct 2017 11:26:45 -0400 Subject: Fix #1291 --- sway/criteria.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'sway/criteria.c') diff --git a/sway/criteria.c b/sway/criteria.c index f5fe40cb..e8978ebe 100644 --- a/sway/criteria.c +++ b/sway/criteria.c @@ -434,10 +434,18 @@ static void container_match_add(swayc_t *container, struct list_tokens *list_tok list_add(list_tokens->list, container); } } + list_t *container_for(list_t *tokens) { struct list_tokens list_tokens = (struct list_tokens){create_list(), tokens}; container_map(&root_container, (void (*)(swayc_t *, void *))container_match_add, &list_tokens); + + for (int i = 0; i < scratchpad->length; ++i) { + swayc_t *c = scratchpad->items[i]; + if (criteria_test(c, tokens)) { + list_add(list_tokens.list, c); + } + } return list_tokens.list; } -- cgit v1.2.3