Browse Source

Fix AnalyzerSearchTreeNode.Text

pull/2606/head
Siegfried Pammer 4 years ago
parent
commit
7c7247d359
  1. 3
      ILSpy/Analyzers/AnalyzerSearchTreeNode.cs

3
ILSpy/Analyzers/AnalyzerSearchTreeNode.cs

@ -18,7 +18,6 @@ @@ -18,7 +18,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using ICSharpCode.Decompiler.TypeSystem;
@ -43,7 +42,7 @@ namespace ICSharpCode.ILSpy.Analyzers @@ -43,7 +42,7 @@ namespace ICSharpCode.ILSpy.Analyzers
}
public override object Text => analyzerHeader
+ (Children.Count > 0 && !threading.IsRunning ? " (" + Children.Count + ") in " + threading.EllapsedMilliseconds + "ms" : "");
+ (Children.Count > 0 && !threading.IsRunning ? " (" + Children.Count + " in " + threading.EllapsedMilliseconds + "ms)" : "");
public override object Icon => Images.Search;

Loading…
Cancel
Save