diff options
author | Ronan Pigott <ronan@rjp.ie> | 2022-12-08 11:30:20 -0700 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2022-12-08 21:20:45 +0100 |
commit | 991d75904f1460a6cc3a0b11c145bff876035897 (patch) | |
tree | bcb3cf91ee48e9c074f2cb9774bfe734168e2c3a | |
parent | de3e6a0da0677d96be0e6a86eed11574858db8b5 (diff) |
criteria: be lenient on window_role and instance too
-rw-r--r-- | sway/criteria.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/criteria.c b/sway/criteria.c index 0f161834..d7326bea 100644 --- a/sway/criteria.c +++ b/sway/criteria.c @@ -287,7 +287,7 @@ static bool criteria_matches_view(struct criteria *criteria, switch (criteria->instance->match_type) { case PATTERN_FOCUSED: - if (focused && strcmp(instance, view_get_instance(focused))) { + if (focused && lenient_strcmp(instance, view_get_instance(focused))) { return false; } break; @@ -307,7 +307,7 @@ static bool criteria_matches_view(struct criteria *criteria, switch (criteria->window_role->match_type) { case PATTERN_FOCUSED: - if (focused && strcmp(window_role, view_get_window_role(focused))) { + if (focused && lenient_strcmp(window_role, view_get_window_role(focused))) { return false; } break; |