diff --git a/playingbar.go b/playingbar.go index 646e1bf..0e5e403 100644 --- a/playingbar.go +++ b/playingbar.go @@ -66,6 +66,10 @@ func (p *PlayingBar) run() error { break } + if gomu.player.IsPaused() { + continue + } + p.progress = int(gomu.player.GetPosition().Seconds()) start, err := time.ParseDuration(strconv.Itoa(p.progress) + "s")