From 74c0c01268d46882fe8683169e1f19d4c2d8a3cf Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Tue, 20 Jun 2023 09:37:56 -0700 Subject: [PATCH] add ellipsis to Download menu item --- ui/widgets/gridviewitem.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/widgets/gridviewitem.go b/ui/widgets/gridviewitem.go index 02e4894..edd3cba 100644 --- a/ui/widgets/gridviewitem.go +++ b/ui/widgets/gridviewitem.go @@ -175,7 +175,7 @@ func (g *GridViewItem) showContextMenu(pos fyne.Position) { fyne.NewMenuItem("Shuffle", func() { g.onPlay(true) }), fyne.NewMenuItem("Add to queue", g.onAddToQueue), fyne.NewMenuItem("Add to playlist...", g.onAddToPlaylist), - fyne.NewMenuItem("Download", g.onDownload)), + fyne.NewMenuItem("Download...", g.onDownload)), fyne.CurrentApp().Driver().CanvasForObject(g)) } g.menu.ShowAtPosition(pos)