mirror of
https://github.com/swaywm/sway.git
synced 2024-11-24 08:51:27 +00:00
criteria: be lenient on window_role and instance too
This commit is contained in:
parent
817f1bbec3
commit
8d78ab6a45
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue