Workaround for issue #147

This commit is contained in:
Keith Edmunds 2022-11-24 09:17:40 +00:00
parent f297923a2f
commit 30bd23c088

View File

@ -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:
"""