fixup! fixup! Fix playlist table jitter
This commit is contained in:
parent
2d00a8af4b
commit
bcf790efe2
|
@ -322,7 +322,7 @@ class RemiApp(App):
|
|||
ICON_TRASH,
|
||||
])
|
||||
|
||||
this_playlist = zip(table, [i.get("current", False) for i in playlist]) # ew, but it works...
|
||||
this_playlist = list(zip(table, [i.get("current", False) for i in playlist])) # ew, but it works...
|
||||
if this_playlist == self.old_playlist: return
|
||||
self.old_playlist = this_playlist
|
||||
|
||||
|
|
Loading…
Reference in New Issue