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)