summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rhlibrary/selector_widget.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/rhlibrary/selector_widget.go b/src/rhlibrary/selector_widget.go
index fb54f21..16bb762 100644
--- a/src/rhlibrary/selector_widget.go
+++ b/src/rhlibrary/selector_widget.go
@@ -107,7 +107,10 @@ func getShowsSelector(db *rddb.DBChan, p *player.PlayerChan) (gtk.IWidget, error
return
}
for _, show := range shows {
- rhdl.Printf("Show: %d, %s, %v\n", show.ID, show.Title, show.Carts)
+ rhdl.Printf("Show: %d, %s\n", show.ID, show.Title)
+ for _, cart := range show.Carts {
+ rhdl.Printf(" [%d]: %s (%s)\n", cart.Number, cart.Title, cart.Duration.String())
+ }
}
})