Fix #602: Allow album info dialog to scroll with long description

This commit is contained in:
Drew Weymouth
2025-04-15 17:21:18 -07:00
parent e19131a1b4
commit fe9f3faa4e
2 changed files with 35 additions and 14 deletions
+3
View File
@@ -556,6 +556,9 @@ func (c *Controller) ShowAlbumInfoDialog(albumID, albumName string, albumCover i
}
c.ClosePopUpOnEscape(pop)
c.haveModal = true
pop.Resize(pop.Content.MinSize()) // needed so that NonScrollingMinHeight can consider the width
h := fyne.Min(dlg.NonScrollingMinHeight(), c.MainWindow.Canvas().Size().Height*0.85)
pop.Resize(fyne.NewSize(dlg.MinSize().Width, h))
pop.Show()
})
}()