add option to show album years in grid views

This commit is contained in:
Drew Weymouth
2024-06-27 17:44:41 -07:00
parent 2b39c6ba66
commit edf85a4162
15 changed files with 179 additions and 43 deletions
+6
View File
@@ -195,6 +195,12 @@ func (b *BrowsingPane) ScrollDown() {
}
}
func (b *BrowsingPane) RefreshPage() {
if b.curPage != nil {
b.curPage.Refresh()
}
}
func (b *BrowsingPane) doSetPage(p Page) bool {
if b.curPage != nil && b.curPage.Route() == p.Route() {
return false