remove debug prints

This commit is contained in:
Drew Weymouth
2023-01-09 21:14:03 -08:00
parent 78862f6bf0
commit df76cbb7b0
2 changed files with 1 additions and 5 deletions
+1 -2
View File
@@ -81,11 +81,10 @@ func (ag *AlbumGrid) SaveToState() AlbumGridState {
}
func NewAlbumGridFromState(state AlbumGridState) *AlbumGrid {
log.Printf("restoring album grid from state: %+v", state)
ag := &AlbumGrid{AlbumGridState: state}
ag.ExtendBaseWidget(ag)
ag.createGridWrapList()
ag.Refresh()
ag.Refresh() // needed to initialize the widget
ag.grid.ScrollToOffset(state.scrollPos)
return ag
}