mirror of
https://github.com/fergalmoran/picard.git
synced 2026-02-22 23:55:46 +00:00
PICARD-2064: Fixed clusters not showing album name in album column
This commit is contained in:
@@ -231,7 +231,7 @@ class Cluster(FileList):
|
||||
def column(self, column):
|
||||
if column == 'title':
|
||||
return '%s (%d)' % (self.metadata['album'], len(self.files))
|
||||
elif (column == '~length' and self.special) or column == 'album':
|
||||
elif self.special and (column in ['~length', 'album']):
|
||||
return ''
|
||||
elif column == '~length':
|
||||
return format_time(self.metadata.length)
|
||||
|
||||
Reference in New Issue
Block a user