Added indicator icon that shows on the currently playing track.

This commit is contained in:
The Wobbler 2024-12-29 18:55:55 +01:00
parent 29cc80feae
commit efcae74382
5 changed files with 41 additions and 10 deletions

View file

@ -7,9 +7,10 @@ class PlaylistView(QTreeWidget):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.setColumnCount(3)
self.setColumnCount(4)
headers = [
"",
"#",
"Title",
"Artist",