fixup! fixup! Fix playlist table jitter

This commit is contained in:
Peder Bergebakken Sundt 2019-11-24 17:23:58 +01:00
parent 2d00a8af4b
commit bcf790efe2
1 changed files with 1 additions and 1 deletions

View File

@ -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