Incremental prgress.

This commit is contained in:
Michael Bucari-Tovo 2022-07-13 01:14:05 -06:00
parent 6182b2bcee
commit eb49dcfc54
6 changed files with 194 additions and 115 deletions

View file

@ -128,13 +128,11 @@ namespace LibationWinForms.AvaloniaUI.ViewModels
public void ExpandItem(SeriesEntrys2 sEntry)
{
var sindex = Items.IndexOf(sEntry);
foreach (var episode in FilterRemoved.BookEntries().Where(b => b.Parent == sEntry).ToList())
{
if (SearchResults is null || SearchResults.Docs.Any(d => d.ProductId == episode.AudibleProductId))
{
InsertItem(++sindex, episode);
Add(episode);
}
}
sEntry.Liberate.Expanded = true;