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;