Elapsed song time

Much like the clock option, I think a toggle to be able to display/hide the remaining/elapsed song time, in both setlist and performance modes would be a nice addition.

That’s a good idea, I’ll add it to my todo list!

2 Likes

I’d also like the ability to hide Song, Section and Total Setlist times from the Setlist view. I have certain long-form Theatre show projects that are very rubato so don’t bother to tempo-map the Live Sets (click tracks are printed as part of the stems). In this case, the times are completely misleading. I can hide them in Performance view, but not in Setlist view.

You should be able to do this with custom styles. To hide all durations, add the following code to your styles.css file:

.setlist .duration,
.totals .duration {
  display: none !important;
}

Let me know if this works for you! :slight_smile: