Compare commits

..

No commits in common. "7184e752c200da05f4d28570fad99ff045d3c641" and "5f788c81fb54e51256f2d2da0ea2dd4f6998ff90" have entirely different histories.

2 changed files with 4 additions and 2 deletions

View file

@ -62,7 +62,7 @@ export const TitleLabel = (player, params) => Label({
truncate: 'end', truncate: 'end',
justification: 'left', justification: 'left',
className: 'title', className: 'title',
binds: [['label', player, 'track-title']], binds: [['label', player, 'trackTitle']],
}); });
export const ArtistLabel = (player, params) => Label({ export const ArtistLabel = (player, params) => Label({
@ -72,7 +72,9 @@ export const ArtistLabel = (player, params) => Label({
truncate: 'end', truncate: 'end',
justification: 'left', justification: 'left',
className: 'artist', className: 'artist',
binds: [['label', player, 'track-artists', a => a.join(', ') || '']], connections: [[player, label => {
label.label = player.trackArtists.join(', ') || '';
}]],
}); });
export const PlayerIcon = (player, { symbolic = true, ...params } = {}) => { export const PlayerIcon = (player, { symbolic = true, ...params } = {}) => {

Binary file not shown.