mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-25 04:42:14 +00:00
even better dupe media player filtering
This commit is contained in:
parent
e7897cef8b
commit
07b6e8efbd
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ Scope {
|
|||
if (p1.trackTitle && p2.trackTitle &&
|
||||
(p1.trackTitle.includes(p2.trackTitle)
|
||||
|| p2.trackTitle.includes(p1.trackTitle))
|
||||
|| p1.position - p2.position <= 2) {
|
||||
|| (p1.position - p2.position <= 2 && p1.length - p2.length <= 2)) {
|
||||
group.push(j);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue