diff --git a/ui/widgets/tracklist.go b/ui/widgets/tracklist.go index 8922e40..0d9dc2e 100644 --- a/ui/widgets/tracklist.go +++ b/ui/widgets/tracklist.go @@ -573,7 +573,8 @@ func (t *Tracklist) onShowContextMenu(e *fyne.PointEvent, trackIdx int) { t.onSetFavorites(t.selectedTracks(), false, true) }) unfavorite.Icon = myTheme.NotFavoriteIcon - t.ctxMenu.Items = append(t.ctxMenu.Items, playlist, download) + t.ctxMenu.Items = append(t.ctxMenu.Items, fyne.NewMenuItemSeparator(), + playlist, download) t.shareMenuItem = fyne.NewMenuItem("Share...", func() { t.onShare(t.selectedTracks()) })