From ff6e99aed99bbd828e3237ab1c5eab2df29aeb30 Mon Sep 17 00:00:00 2001 From: Matt Ward Date: Sat, 20 Dec 2008 17:25:44 +0000 Subject: [PATCH] Adding/removing a directory from the Code Analysis's Add/Remove rule assembly dialog was not marking the options panel as being modified so the changes were not saved. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3705 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptions.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptions.cs b/src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptions.cs index 3caa44489e..5afee16012 100644 --- a/src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptions.cs +++ b/src/AddIns/Misc/CodeAnalysis/Src/AnalysisProjectOptions.cs @@ -441,6 +441,7 @@ namespace ICSharpCode.CodeAnalysis b.Append(asm); } this.RuleAssemblies = b.ToString(); + OnOptionChanged(new EventArgs()); } } }