mirror of
https://github.com/beetbox/beets.git
synced 2025-12-09 10:05:35 +01:00
Fix track length comparision in UI code
Fixes behaviour to what we documented already.
This commit is contained in:
parent
d875fee722
commit
fabfde33c6
1 changed files with 1 additions and 1 deletions
|
|
@ -508,7 +508,7 @@ class ChangeRepresentation(object):
|
|||
item.length
|
||||
and track_info.length
|
||||
and abs(item.length - track_info.length)
|
||||
> config["ui"]["length_diff_thresh"].as_number()
|
||||
>= config["ui"]["length_diff_thresh"].as_number()
|
||||
):
|
||||
highlight_color = "text_highlight"
|
||||
changed = True
|
||||
|
|
|
|||
Loading…
Reference in a new issue