mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-02-06 20:45:59 +01:00
criteria: be lenient on window_role and instance too
This commit is contained in:
parent
817f1bbec3
commit
8d78ab6a45
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…
Add table
Reference in a new issue