forked from Wobbl/Wobuzz
Added "Custom Sorting" to playlist view.
This commit is contained in:
parent
5d6f67603a
commit
44854af42f
3 changed files with 15 additions and 3 deletions
|
@ -7,13 +7,14 @@ class PlaylistView(QTreeWidget):
|
|||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
self.setColumnCount(4)
|
||||
self.setColumnCount(3)
|
||||
|
||||
headers = [
|
||||
"#",
|
||||
"Title",
|
||||
"Artist",
|
||||
"Album"
|
||||
"Album",
|
||||
"# Custom Sorting"
|
||||
]
|
||||
|
||||
self.setHeaderLabels(headers)
|
Loading…
Add table
Add a link
Reference in a new issue