Fixed an error where if player was resized quickly while trying to draw the playlist, the player would crash.

This commit is contained in:
GuardKenzie
2021-05-13 01:09:10 +00:00
parent 4257070fe0
commit 3856deccff

View File

@ -602,6 +602,7 @@ class Player:
pair = curses.color_pair(2) | curses.A_REVERSE
# Move and write text
try:
self.playlist_win.move(line, 0)
if playlist_item is not None:
@ -611,6 +612,10 @@ class Player:
)
self.playlist_win.clrtoeol()
except curses.error:
return
line += 1
self.playlist_win.refresh()