Added playlists view context menu for rename, lock/unlock, and delete.

This commit is contained in:
2026-08-09 17:30:38 -04:00
parent cf8a40ee52
commit 91e4d88643
6 changed files with 154 additions and 15 deletions

View File

@@ -82,6 +82,11 @@ public class PlaylistManager : IPlaylistManager
playlistRepository.Delete(playlist);
if (CurrentPlaylist == playlist)
{
CurrentPlaylist = _playlists.Count > 0 ? _playlists[0] : null;
}
PlaylistRemoved?.Invoke(this, new(playlist));
}