diff options
Diffstat (limited to 'ui.js')
-rw-r--r-- | ui.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui.js b/ui.js index 7b1d330..a7df2b3 100644 --- a/ui.js +++ b/ui.js @@ -298,7 +298,9 @@ class AppElement extends FocusElement { } this.player.on('printStatusLine', data => { - this.playbackInfoElement.updateProgress(data) + if (this.playingTrack) { + this.playbackInfoElement.updateProgress(data) + } }) return true |