diff --git a/bar.go b/bar.go index b687591..be573f5 100644 --- a/bar.go +++ b/bar.go @@ -260,11 +260,7 @@ // priority, i.e. bar will be on top. If you don't need to set priority // dynamically, better use BarPriority option. func (b *Bar) SetPriority(priority int) { - select { - case <-b.done: - default: - b.container.setBarPriority(b, priority) - } + b.container.setBarPriority(b, priority) } // Abort interrupts bar's running goroutine. Call this, if you'd like