From 6cdf5d7ab8331baf17410a6d6263b62b422b842b Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Sun, 4 Jun 2006 21:00:21 +0000 Subject: [PATCH] Parse CompilerMessageView text on category change correctly. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.0@1462 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../Src/Gui/Pads/CompilerMessageView/CompilerMessageView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageView.cs b/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageView.cs index a016e0c545..ba270f8cb1 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageView.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageView.cs @@ -301,7 +301,7 @@ namespace ICSharpCode.SharpDevelop.Gui MessageViewCategory category = (MessageViewCategory)messageCategories[i]; if (category.Category == categoryName) { selectedCategory = i; - textEditorControl.Text = text; + textEditorControl.Text = StringParser.Parse(text); //textEditorControl.Refresh(); OnSelectedCategoryIndexChanged(EventArgs.Empty); break;