aboutsummaryrefslogtreecommitdiffstats
path: root/sway/criteria.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/criteria.c')
-rw-r--r--sway/criteria.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sway/criteria.c b/sway/criteria.c
index 89630d90..2f9992e9 100644
--- a/sway/criteria.c
+++ b/sway/criteria.c
@@ -121,8 +121,9 @@ static bool criteria_matches_view(struct criteria *criteria,
121 121
122 if (criteria->con_mark) { 122 if (criteria->con_mark) {
123 bool exists = false; 123 bool exists = false;
124 for (int i = 0; i < view->marks->length; ++i) { 124 struct sway_container *con = view->container;
125 if (regex_cmp(view->marks->items[i], criteria->con_mark) == 0) { 125 for (int i = 0; i < con->marks->length; ++i) {
126 if (regex_cmp(con->marks->items[i], criteria->con_mark) == 0) {
126 exists = true; 127 exists = true;
127 break; 128 break;
128 } 129 }