From dfbbc2ffe0310d40ddf08d101be1c76226ef3a1c Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Tue, 23 May 2023 19:09:00 -0700 Subject: [PATCH] get rid of debug print and unused func --- ui/browsing/artistspage.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ui/browsing/artistspage.go b/ui/browsing/artistspage.go index 5bfcc94..7e770fa 100644 --- a/ui/browsing/artistspage.go +++ b/ui/browsing/artistspage.go @@ -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,