Don't close when track playing; mark as played in playlist

This commit is contained in:
Keith Edmunds 2025-04-14 21:23:00 +01:00
parent c61df17dd5
commit 6496ea2ac4
2 changed files with 2 additions and 1 deletions

View File

@ -1209,7 +1209,7 @@ class Window(QMainWindow):
for name, value in attributes_to_save.items():
ds.setting_set(name, value)
event.accept()
event.accept()
# # # # # # # # # # Internal utility functions # # # # # # # # # #

View File

@ -168,6 +168,7 @@ class PlaylistRow:
@played.setter
def played(self, value: bool) -> None:
self.dto.played = True
ds.playlistrow_played(self.playlistrow_id, value)
@property