From 492a920c772c2ce0e8098c23a371a677a7201faf Mon Sep 17 00:00:00 2001 From: Erica Date: Tue, 29 Mar 2022 00:29:27 +0000 Subject: [PATCH] Fixed progressbar not updating when song repeats --- bin/miniplayer | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/miniplayer b/bin/miniplayer index 9c763c2..e65f66a 100755 --- a/bin/miniplayer +++ b/bin/miniplayer @@ -873,7 +873,9 @@ class Player: self.art_win.addstr( self.text_start + 2, 0, - self.bar_body*(int((self.art_window_width - 1) * self.progress)) + self.bar_head, + self.bar_body * int((self.art_window_width - 1) * self.progress) + + self.bar_head + + " " * int(self.art_window_width * (1 - self.progress)), curses.color_pair(3) )