criteria match containers

This commit is contained in:
Tony Crisci 2018-04-08 12:13:09 -04:00
parent 46280460a5
commit 70b33342fe
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ static int regex_cmp(const char *item, const pcre *regex) {
// test a single view if it matches list of criteria tokens (all of them).
static bool criteria_test(struct sway_container *cont, list_t *tokens) {
if (cont->type != C_VIEW) {
if (cont->type < C_CONTAINER) {
return false;
}
int matches = 0;