From 30e3332795c519914b15a50251e3a92713bd28d1 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Sat, 29 May 2021 12:55:15 +0100 Subject: [PATCH] Fix issue #1: Add playlist table headers --- app/playlists.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/playlists.py b/app/playlists.py index bfabb2d..40e951d 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -61,6 +61,8 @@ class Playlist(QTableWidget): self.horizontalHeader().setMinimumSectionSize(0) self._set_column_widths() + self.setHorizontalHeaderLabels(["ID", "Lead", "Title", "Artist", + "Len", "Start", "Path"]) self.setDragEnabled(True) self.setAcceptDrops(True)