From 30bd23c0886d42135c09d3f86f274ef9c1d5c89c Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Thu, 24 Nov 2022 09:17:40 +0000 Subject: [PATCH] Workaround for issue #147 --- app/playlists.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/playlists.py b/app/playlists.py index 5f78786..c516472 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -1950,7 +1950,11 @@ class PlaylistTab(QTableWidget): # Update text new_text = playlist_row.note + additional_text - self.item(playlist_row.row_number, column).setText(new_text) + # FIXME temporary workaround to issue #147 + try: + self.item(playlist_row.row_number, column).setText(new_text) + except AttributeError: + pass def _update_row(self, session, row: int, track: Tracks) -> None: """