From 11090b57ad0ce811089bd094083d05ebd8a6f577 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Sat, 1 Oct 2022 16:47:03 +0100 Subject: [PATCH] Preserve note when adding track to header --- app/playlists.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/playlists.py b/app/playlists.py index 8f4e380..6514a39 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -1248,6 +1248,7 @@ class PlaylistTab(QTableWidget): last_playtime = Playdates.last_played(session, track.id) last_played_str = get_relative_date(last_playtime) self.item(row, LASTPLAYED).setText(last_played_str) + self.item(row, ROW_NOTES).setText(plr.note) self.update_display(session)