Workaround for issue #147
This commit is contained in:
parent
f297923a2f
commit
30bd23c088
@ -1950,7 +1950,11 @@ class PlaylistTab(QTableWidget):
|
|||||||
|
|
||||||
# Update text
|
# Update text
|
||||||
new_text = playlist_row.note + additional_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:
|
def _update_row(self, session, row: int, track: Tracks) -> None:
|
||||||
"""
|
"""
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user