Browse Source

Fix #1752: ExpandUsingDeclarations not saved.

pull/1754/head
Siegfried Pammer 6 years ago
parent
commit
b0935ef2e4
  1. 1
      ILSpy/Options/DisplaySettingsPanel.xaml.cs

1
ILSpy/Options/DisplaySettingsPanel.xaml.cs

@ -134,6 +134,7 @@ namespace ICSharpCode.ILSpy.Options @@ -134,6 +134,7 @@ namespace ICSharpCode.ILSpy.Options
section.SetAttributeValue("SortResults", s.SortResults);
section.SetAttributeValue("FoldBraces", s.FoldBraces);
section.SetAttributeValue("ExpandMemberDefinitions", s.ExpandMemberDefinitions);
section.SetAttributeValue("ExpandUsingDeclarations", s.ExpandUsingDeclarations);
section.SetAttributeValue("IndentationUseTabs", s.IndentationUseTabs);
section.SetAttributeValue("IndentationSize", s.IndentationSize);
section.SetAttributeValue("IndentationTabSize", s.IndentationTabSize);

Loading…
Cancel
Save