diff --git a/ui/browsing/playlistpage.go b/ui/browsing/playlistpage.go index dbdadc0..87fd7b1 100644 --- a/ui/browsing/playlistpage.go +++ b/ui/browsing/playlistpage.go @@ -128,7 +128,6 @@ func NewPlaylistPageHeader(page *PlaylistPage) *PlaylistPageHeader { page.onPlayTrackAt(0) }) - // Todo: there's got to be a way to make this less convoluted. Custom layout? a.container = container.NewVBox(a.titleLabel, container.New(&layouts.VboxCustomPadding{ExtraPad: -10}, a.descriptionLabel, a.ownerLabel, diff --git a/ui/browsing/playlistspage.go b/ui/browsing/playlistspage.go index 05d110b..8c6fd67 100644 --- a/ui/browsing/playlistspage.go +++ b/ui/browsing/playlistspage.go @@ -113,7 +113,7 @@ func NewPlaylistList() *PlaylistList { row := item.(*PlaylistListRow) row.ID = a.Playlists[id].ID row.nameLabel.Text = a.Playlists[id].Name - row.descrptionLabel.Text = a.Playlists[id].Name + row.descrptionLabel.Text = a.Playlists[id].Comment row.ownerLabel.Text = a.Playlists[id].Owner row.trackCountLabel.Text = strconv.Itoa(a.Playlists[id].SongCount) row.Refresh()