From 8366fed1be6e47d75b6c799df6d69bcd5df96b4d Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Sun, 30 May 2021 20:02:31 +0100 Subject: [PATCH] Fix no path being shown in playlist --- app/playlists.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/playlists.py b/app/playlists.py index e59aa7a..0bb872a 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -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)