From dd86c60636dff5b78b25b3d71b858405f493f155 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Fri, 8 Apr 2022 22:53:48 +0100 Subject: [PATCH] Fix background color of row 1 on play --- app/playlists.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/playlists.py b/app/playlists.py index 34a7b62..664eb56 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -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)