Browse Source

Set title in AboutPage

pull/1801/head
Siegfried Pammer 6 years ago
parent
commit
18f0038b29
  1. 2
      ILSpy/AboutPage.cs

2
ILSpy/AboutPage.cs

@ -54,7 +54,7 @@ namespace ICSharpCode.ILSpy @@ -54,7 +54,7 @@ namespace ICSharpCode.ILSpy
public static void Display(DecompilerTextView textView)
{
AvalonEditTextOutput output = new AvalonEditTextOutput() { EnableHyperlinks = true };
AvalonEditTextOutput output = new AvalonEditTextOutput() { Title = Resources._About, EnableHyperlinks = true };
output.WriteLine(Resources.ILSpyVersion + RevisionClass.FullVersion);
if(WindowsVersionHelper.HasPackageIdentity) {
output.WriteLine($"Package Name: {WindowsVersionHelper.GetPackageFamilyName()}");

Loading…
Cancel
Save