Browse Source

Fix syntax error in CreateBoldRun method for CROSS_PLATFORM

pull/3694/head
Lex Li 2 weeks ago
parent
commit
0feaeb7cf3
  1. 2
      ILSpy/TreeNodes/AssemblyTreeNode.cs

2
ILSpy/TreeNodes/AssemblyTreeNode.cs

@ -191,7 +191,7 @@ namespace ICSharpCode.ILSpy.TreeNodes @@ -191,7 +191,7 @@ namespace ICSharpCode.ILSpy.TreeNodes
private static Bold CreateBoldRun(string text)
{
#if CROSS_PLATFORM
return new Bold().Add(new Run(text)));
return new Bold().Add(new Run(text));
#else
return new Bold(new Run(text));
#endif

Loading…
Cancel
Save