fix regression with shuffle context menu on gridview

This commit is contained in:
Drew Weymouth
2023-07-14 16:54:53 -07:00
parent 2239023e0f
commit 4febad12b7
+1 -1
View File
@@ -367,7 +367,7 @@ func (g *GridView) showContextMenu(card *GridViewItem, pos fyne.Position) {
func (g *GridView) onPlay(itemID string, shuffle bool) {
if g.OnPlay != nil {
g.OnPlay(itemID, false)
g.OnPlay(itemID, shuffle)
}
}