Make "Playlist" observable (for scroll to top feature).

This commit is contained in:
2026-07-31 09:03:43 -04:00
parent 8864da7a75
commit ea5b428a65

View File

@@ -43,7 +43,12 @@ public partial class PlaylistDetailViewModel : ViewModelBase
private DispatcherQueueTimer? _filterTimer;
public Playlist? Playlist { get; private set; }
private Playlist? _playlist;
public Playlist? Playlist
{
get => _playlist;
private set => SetProperty(ref _playlist, value);
}
private PlaylistSong? _playingSong;
public PlaylistSong? PlayingSong