get rid of debug print and unused func

This commit is contained in:
Drew Weymouth
2023-05-23 19:09:00 -07:00
parent e95cefd3ce
commit dfbbc2ffe0
-5
View File
@@ -67,7 +67,6 @@ func newArtistsPage(
}
a.ExtendBaseWidget(a)
log.Printf("Scroll pos: full %0.2f search %0.2f", fullGridScrollPos, searchGridScrollPos)
a.titleDisp = widget.NewRichTextWithText("Artists")
a.titleDisp.Segments[0].(*widget.TextSegment).Style = widget.RichTextStyle{
SizeName: theme.SizeNameHeadingText,
@@ -156,10 +155,6 @@ func (a *ArtistsPage) Route() controller.Route {
return controller.ArtistsRoute()
}
func (a *ArtistsPage) showArtistPage(id string) {
a.contr.NavigateTo(controller.ArtistRoute(id))
}
func (a *ArtistsPage) Save() SavedPage {
s := &savedArtistsPage{
contr: a.contr,