quick fix

This commit is contained in:
Drew Weymouth
2023-01-26 09:48:44 -08:00
parent 1d06a8d72d
commit a48b2db572
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -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,
+1 -1
View File
@@ -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()