Skip to content

Commit

Permalink
Revert demo page and animation changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaihenriksen committed Mar 21, 2023
1 parent 77a3d1a commit 27ec218
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 243 deletions.
7 changes: 1 addition & 6 deletions MainDemo.Wpf/Domain/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public MainWindowViewModel(ISnackbarMessageQueue snackbarMessageQueue)
{
DemoItems.Add(item);
}
SelectedItem = DemoItems.First(d => d.Name == "Hint and helper issues");
SelectedItem = DemoItems.First();
_demoItemsView = CollectionViewSource.GetDefaultView(DemoItems);
_demoItemsView.Filter = DemoItemsFilter;

Expand Down Expand Up @@ -428,11 +428,6 @@ private static IEnumerable<DemoItem> GenerateDemoItems(ISnackbarMessageQueue sna
DocumentationLink.DemoPageLink<SmartHint>(),
DocumentationLink.StyleLink("SmartHint"),
});

yield return new DemoItem(
"Hint and helper issues",
typeof(HintIssues),
Enumerable.Empty<DocumentationLink>());
}

private bool DemoItemsFilter(object obj)
Expand Down
Loading

0 comments on commit 27ec218

Please sign in to comment.