From b0935ef2e487d9f11be0975e7ebcd28edb144fb1 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Mon, 14 Oct 2019 19:23:44 +0200 Subject: [PATCH] Fix #1752: ExpandUsingDeclarations not saved. --- ILSpy/Options/DisplaySettingsPanel.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ILSpy/Options/DisplaySettingsPanel.xaml.cs b/ILSpy/Options/DisplaySettingsPanel.xaml.cs index 56ff2622d..ef13c55d9 100644 --- a/ILSpy/Options/DisplaySettingsPanel.xaml.cs +++ b/ILSpy/Options/DisplaySettingsPanel.xaml.cs @@ -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);