Merge branch 'main' into tooltips

This commit is contained in:
Drew Weymouth
2024-08-06 07:44:47 -07:00
committed by GitHub
10 changed files with 474 additions and 13 deletions
+1 -1
View File
@@ -193,7 +193,7 @@ func NewAlbumFilterPopup(filter *AlbumFilterButton) *AlbumFilterPopup {
title.TextStyle.Bold = true
a.container = container.NewVBox(
container.NewHBox(layout.NewSpacer(), title, layout.NewSpacer()),
container.NewHBox(widget.NewLabel(lang.L("Year from")), minYear, widget.NewLabel("to"), maxYear),
container.NewHBox(widget.NewLabel(lang.L("Year from")), minYear, widget.NewLabel(lang.L("to")), maxYear),
container.NewHBox(a.isFavorite, a.isNotFavorite),
a.genreFilter,
)