Browse Source

Fit and finish: Remove border - border is supplied by containing pane.

pull/301/head
Ed Harvey 14 years ago
parent
commit
faef43fbc3
  1. 2
      ILSpy/AnalyzerTreeView.cs

2
ILSpy/AnalyzerTreeView.cs

@ -20,6 +20,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.Specialized; using System.Collections.Specialized;
using System.Linq; using System.Linq;
using System.Windows;
using ICSharpCode.ILSpy.TreeNodes.Analyzer; using ICSharpCode.ILSpy.TreeNodes.Analyzer;
using ICSharpCode.TreeView; using ICSharpCode.TreeView;
@ -48,6 +49,7 @@ namespace ICSharpCode.ILSpy
{ {
this.ShowRoot = false; this.ShowRoot = false;
this.Root = new AnalyzerRootNode { Language = MainWindow.Instance.CurrentLanguage }; this.Root = new AnalyzerRootNode { Language = MainWindow.Instance.CurrentLanguage };
this.BorderThickness = new Thickness(0);
ContextMenuProvider.Add(this); ContextMenuProvider.Add(this);
MainWindow.Instance.CurrentAssemblyListChanged += MainWindow_Instance_CurrentAssemblyListChanged; MainWindow.Instance.CurrentAssemblyListChanged += MainWindow_Instance_CurrentAssemblyListChanged;
} }

Loading…
Cancel
Save