WIP: playlists refactor: fixup context menu

This commit is contained in:
Keith Edmunds 2023-03-05 14:36:01 +00:00
parent 15f4bec197
commit 0978e93ee7

View File

@ -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)