make Quick Search dialog a little taller

This commit is contained in:
Drew Weymouth
2023-11-15 07:42:31 -08:00
parent 5be8ed0019
commit 04f9c4e3b7
2 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -173,8 +173,8 @@ func newQuickSearchResult(parent *QuickSearch) *quickSearchResult {
title: widget.NewLabel(""),
secondary: widget.NewRichText(),
}
qs.title.Wrapping = fyne.TextTruncate
qs.secondary.Wrapping = fyne.TextTruncate
qs.title.Truncation = fyne.TextTruncateEllipsis
qs.secondary.Truncation = fyne.TextTruncateEllipsis
qs.ExtendBaseWidget(qs)
qs.imageLoader = util.NewThumbnailLoader(parent.imgSource, func(im image.Image) {
qs.image.SetImage(im, false)