Fix playlist table jitter

This commit is contained in:
Peder Bergebakken Sundt 2019-11-24 16:21:21 +01:00
parent 20a1547e7e
commit a78ce91b3b
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,7 @@ WIDTH = WIDTH_L + 40 + WIDTH_R
class RemiApp(App):
def __init__(self, *args):
res_path = os.path.join(os.path.dirname(__file__), 'res')
self.old_playlist = None
super(RemiApp, self).__init__(*args, static_file_path=res_path)
def make_gui_elements(self):#content and behaviour
@ -321,6 +322,9 @@ class RemiApp(App):
ICON_TRASH,
])
if table == self.old_playlist: return
self.old_playlist = table
self.playlist.table.empty(keep_title=True)
self.playlist.table.append_from_list(table)