diff options
| author | Ronan Pigott <ronan@rjp.ie> | 2022-12-08 11:30:20 -0700 |
|---|---|---|
| committer | Simon Ser <contact@emersion.fr> | 2022-12-12 11:26:11 +0100 |
| commit | 8d78ab6a45503fd28a17e0b6f5823cf35c0a9e5a (patch) | |
| tree | e886212ea268937355c39fc7ce086b7501e62290 | |
| parent | 817f1bbec3cec1657d0e92714f883faa45a6fef7 (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; |
