Save playlist after moving tracks to another list

Fixes: #38
This commit is contained in:
Keith Edmunds 2021-09-10 09:25:06 +01:00
parent baf0c180bd
commit c69aefef92

View File

@ -382,6 +382,9 @@ class PlaylistTab(QTableWidget):
for row in sorted(rows, reverse=True):
self.removeRow(row)
with Session() as session:
self._save_playlist(session)
self._repaint()
def play_started(self):