Skip to content

Commit

Permalink
Toggle assemblies visibility off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorkstromm committed Nov 28, 2021
1 parent e3cbcab commit 0b093c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Depends/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ public AppWindow(DependencyGraph graph) : base("Depends", 0)
{
_graph = graph ?? throw new ArgumentNullException(nameof(graph));
_dependencies = _graph.Nodes.OrderBy(x => x.Id).ToImmutableList();
_visibleDependencies = _dependencies;
_assembliesVisible = true;
_visibleDependencies = _dependencies.Where(d => !(d is AssemblyReferenceNode)).ToImmutableList();
_assembliesVisible = false;
_lastSelectedDependencyIndex = -1;

ColorScheme = new ColorScheme
Expand Down

0 comments on commit 0b093c9

Please sign in to comment.