Browse Source

Fixed SD2-793: Output window showing incorrect unit test output text

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.0@1440 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 19 years ago
parent
commit
6ebc9f8514
  1. 5
      src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageView.cs

5
src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageView.cs

@ -234,9 +234,12 @@ namespace ICSharpCode.SharpDevelop.Gui @@ -234,9 +234,12 @@ namespace ICSharpCode.SharpDevelop.Gui
SetText(category, category.Text);
SetUpdate(true);
textEditorControl.SelectionStart = textEditorControl.TextLength;
LoggingService.Debug("Replaced " + pendingAppendCalls + " appends with one set call");
if (LoggingService.IsDebugEnabled) {
LoggingService.Debug("Replaced " + pendingAppendCalls + " appends with one set call");
}
pendingAppendCalls = 0;
}
textEditorControl.Refresh();
}
void AppendText(MessageViewCategory category, string fullText, string text)

Loading…
Cancel
Save