mirror of
https://github.com/swaywm/sway.git
synced 2024-12-28 07:56:31 +01:00
criteria: be lenient on window_role and instance too
This commit is contained in:
parent
de3e6a0da0
commit
991d75904f
1 changed files with 2 additions and 2 deletions
|
@ -287,7 +287,7 @@ static bool criteria_matches_view(struct criteria *criteria,
|
||||||
|
|
||||||
switch (criteria->instance->match_type) {
|
switch (criteria->instance->match_type) {
|
||||||
case PATTERN_FOCUSED:
|
case PATTERN_FOCUSED:
|
||||||
if (focused && strcmp(instance, view_get_instance(focused))) {
|
if (focused && lenient_strcmp(instance, view_get_instance(focused))) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -307,7 +307,7 @@ static bool criteria_matches_view(struct criteria *criteria,
|
||||||
|
|
||||||
switch (criteria->window_role->match_type) {
|
switch (criteria->window_role->match_type) {
|
||||||
case PATTERN_FOCUSED:
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue