Fix background color of row 1 on play

This commit is contained in:
Keith Edmunds 2022-04-08 22:53:48 +01:00
parent a774f148ee
commit dd86c60636

View File

@ -422,7 +422,7 @@ class PlaylistTab(QTableWidget):
# Mark next-track row as current
current_row = self._get_next_track_row()
if not current_row:
if current_row is None:
return
self._set_current_track_row(current_row)