From c2c65c3d76ac91f6ae308491214e483c9d605ef7 Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Sat, 2 Mar 2024 12:29:07 -0800 Subject: [PATCH] beginning work on PlayQueueList --- ui/widgets/tracklist.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/widgets/tracklist.go b/ui/widgets/tracklist.go index 5d77102..cd052c0 100644 --- a/ui/widgets/tracklist.go +++ b/ui/widgets/tracklist.go @@ -810,7 +810,7 @@ func (t *TrackRow) Update(tm *util.TrackListModel, rowNum int) { t.name.Segments[0].(*widget.TextSegment).Style.TextStyle.Bold = isPlaying if isPlaying { - t.Content.(*fyne.Container).Objects[0] = container.NewCenter(t.playingIcon) + t.Content.(*fyne.Container).Objects[0] = t.playingIcon } else { t.Content.(*fyne.Container).Objects[0] = t.num }