From 0978e93ee7c09f5ade5b77975eaf7d290112fcbb Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Sun, 5 Mar 2023 14:36:01 +0000 Subject: [PATCH] WIP: playlists refactor: fixup context menu --- app/playlists.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/playlists.py b/app/playlists.py index dea8c24..35fa1f3 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -922,11 +922,11 @@ class PlaylistTab(QTableWidget): self.menu.addSeparator() # Remove row - if track_row and not current and not next_row: + if not current and not next_row: self._add_context_menu('Delete row', self._delete_rows) # Move to playlist - if track_row and not current and not next_row: + if not current and not next_row: self._add_context_menu('Move to playlist...', self.musicmuster.move_selected)