Fix no path being shown in playlist

This commit is contained in:
Keith Edmunds 2021-05-30 20:02:31 +01:00
parent 5d61b514b5
commit 8366fed1be

View File

@ -242,7 +242,7 @@ class Playlist(QTableWidget):
# Add empty start time for now as background
# colour won't be set for columns without items
item = QTableWidgetItem()
self.setItem(row, self.COL_PATH, item)
self.setItem(row, self.COL_START_TIME, item)
# Scroll to new row
self.scrollToItem(titleitem, QAbstractItemView.PositionAtCenter)