add library scan progress detail (#133)

* add library scan progress detail

* scan plex libraries on plex thread
This commit is contained in:
Jason Dove
2021-04-04 10:44:10 -05:00
committed by GitHub
parent c5ee5903b2
commit 6b44873474
39 changed files with 4637 additions and 263 deletions
+7 -4
View File
@@ -169,10 +169,13 @@
private void SelectClicked(MediaCardViewModel card, MouseEventArgs e)
{
List<MediaCardViewModel> GetSortedItems() => _movies.Cards.OrderBy(m => m.SortTitle)
.Append<MediaCardViewModel>(_shows.Cards.OrderBy(s => s.SortTitle))
.Append(_musicVideos.Cards.OrderBy(s => s.SortTitle))
.ToList();
List<MediaCardViewModel> GetSortedItems()
{
return _movies.Cards.OrderBy(m => m.SortTitle)
.Append<MediaCardViewModel>(_shows.Cards.OrderBy(s => s.SortTitle))
.Append(_musicVideos.Cards.OrderBy(s => s.SortTitle))
.ToList();
}
SelectClicked(GetSortedItems, card, e);
}