From faef43fbc3a0ad30529896beec5dd7272faa62e6 Mon Sep 17 00:00:00 2001 From: Ed Harvey Date: Sat, 10 Dec 2011 19:41:55 +1100 Subject: [PATCH] Fit and finish: Remove border - border is supplied by containing pane. --- ILSpy/AnalyzerTreeView.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ILSpy/AnalyzerTreeView.cs b/ILSpy/AnalyzerTreeView.cs index ad02e642b..e9597cd9d 100644 --- a/ILSpy/AnalyzerTreeView.cs +++ b/ILSpy/AnalyzerTreeView.cs @@ -20,6 +20,7 @@ using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; +using System.Windows; using ICSharpCode.ILSpy.TreeNodes.Analyzer; using ICSharpCode.TreeView; @@ -48,6 +49,7 @@ namespace ICSharpCode.ILSpy { this.ShowRoot = false; this.Root = new AnalyzerRootNode { Language = MainWindow.Instance.CurrentLanguage }; + this.BorderThickness = new Thickness(0); ContextMenuProvider.Add(this); MainWindow.Instance.CurrentAssemblyListChanged += MainWindow_Instance_CurrentAssemblyListChanged; }