Added 1 to the custom sort index bc. users may not understand why the first track index is a 0.

This commit is contained in:
The Wobbler 2025-01-25 17:26:55 +01:00
parent 028c38b1b6
commit f0969d013d

View file

@ -20,4 +20,5 @@ class TrackItem(QTreeWidgetItem):
self.setText(2, track.tags.title)
self.setText(3, track.tags.artist)
self.setText(4, track.tags.album)
self.setText(5, str(track.index_custom_sort))
self.setText(5, str(track.index_custom_sort + 1))