switch to ellipsis truncation everywhere

This commit is contained in:
Drew Weymouth
2023-11-03 23:26:26 -07:00
parent b830629e28
commit 27fab7ed26
9 changed files with 18 additions and 17 deletions
+1 -1
View File
@@ -419,7 +419,7 @@ func NewPlaylistListRow(layout *layouts.ColumnsLayout) *PlaylistListRow {
trackCountLabel: widget.NewLabel(""),
}
a.trackCountLabel.Alignment = fyne.TextAlignTrailing
a.ownerLabel.Wrapping = fyne.TextTruncate
a.ownerLabel.Truncation = fyne.TextTruncateEllipsis
a.container = container.New(layout, a.nameLabel, a.descrptionLabel, a.ownerLabel, a.trackCountLabel)
a.ExtendBaseWidget(a)
return a