diff --git a/start.go b/start.go index 6f42f25..3ee6509 100644 --- a/start.go +++ b/start.go @@ -470,15 +470,10 @@ func start(application *tview.Application, args Args) { init := false gomu.app.SetAfterDrawFunc(func(_ tcell.Screen) { - if !init { + if !init && !gomu.player.IsRunning() { gomu.playingBar.setDefault() init = true } - if gomu.player.IsRunning() { - gomu.playingBar.setSongTitle(gomu.player.GetCurrentSong().Name()) - } else { - gomu.playingBar.setDefault() - } }) go populateAudioLength(gomu.playlist.GetRoot())