make primary link in GridViewItem bold

This commit is contained in:
Drew Weymouth
2023-05-24 11:18:58 -07:00
parent a10586d399
commit 65f0fd8670
+1
View File
@@ -139,6 +139,7 @@ func NewGridViewItem(placeholderResource fyne.Resource) *GridViewItem {
secondaryText: NewCustomHyperlink(), secondaryText: NewCustomHyperlink(),
Cover: newCoverImage(placeholderResource), Cover: newCoverImage(placeholderResource),
} }
g.primaryText.SetTextStyle(fyne.TextStyle{Bold: true})
g.ExtendBaseWidget(g) g.ExtendBaseWidget(g)
g.Cover.OnPlay = func() { g.onPlay(false) } g.Cover.OnPlay = func() { g.onPlay(false) }
g.Cover.OnShowContextMenu = g.showContextMenu g.Cover.OnShowContextMenu = g.showContextMenu