Fix move unplayed rows

Fixes #211
This commit is contained in:
Keith Edmunds 2023-12-07 23:07:45 +00:00
parent 6391490f9d
commit e313e84010

View File

@ -1478,6 +1478,9 @@ class PlaylistProxyModel(QSortFilterProxyModel):
def get_row_track_path(self, row_number: int) -> str:
return self.data_model.get_row_track_path(row_number)
def get_unplayed_rows(self) -> List[int]:
return self.data_model.get_unplayed_rows()
def hide_played_tracks(self, hide: bool) -> None:
return self.data_model.hide_played_tracks(hide)