From 1f2e0ff54b88273ecdbed866c8191b5671f0b7a0 Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Wed, 5 Sep 2018 17:37:04 +1000 Subject: [PATCH] Fix inversed condition in criteria --- sway/criteria.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sway/criteria.c b/sway/criteria.c index e5b308e06..0193233e6 100644 --- a/sway/criteria.c +++ b/sway/criteria.c @@ -118,7 +118,7 @@ static bool criteria_matches_view(struct criteria *criteria, return false; } } - + if (criteria->con_mark) { bool exists = false; for (int i = 0; i < view->marks->length; ++i) { @@ -235,7 +235,7 @@ struct match_data { static void criteria_get_views_iterator(struct sway_container *container, void *data) { struct match_data *match_data = data; - if (!container->view) { + if (container->view) { if (criteria_matches_view(match_data->criteria, container->view)) { list_add(match_data->matches, container->view); }