mirror of
https://github.com/beetbox/beets.git
synced 2025-12-29 03:52:51 +01:00
Display hidden penalties (artist, ID) in red instead of light grey on track list.
It's a impacting the similarity, so it should probably be a warning colour for consistency.
This commit is contained in:
parent
1a4dfa0c07
commit
e040ad5b21
1 changed files with 1 additions and 1 deletions
|
|
@ -312,7 +312,7 @@ def show_change(cur_artist, cur_album, match):
|
|||
if item.mb_trackid and item.mb_trackid != track_info.track_id:
|
||||
penalties.append('ID')
|
||||
if penalties:
|
||||
rhs += ' %s' % ui.colorize('lightgray',
|
||||
rhs += ' %s' % ui.colorize('red',
|
||||
'(%s)' % ', '.join(penalties))
|
||||
|
||||
if lhs != rhs:
|
||||
|
|
|
|||
Loading…
Reference in a new issue