Browse Source

Fixed SD2-753: Output window does not autoscroll when it does not have focus

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.0@1309 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 20 years ago
parent
commit
32c383fffc
  1. 15
      src/Main/Base/Project/Src/Gui/Pads/CompilerMessageView/CompilerMessageView.cs

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

@ -116,16 +116,11 @@ namespace ICSharpCode.SharpDevelop.Gui
textEditorControl.LinkClicked += delegate(object sender, LinkClickedEventArgs e) { textEditorControl.LinkClicked += delegate(object sender, LinkClickedEventArgs e) {
FileService.OpenFile("browser://" + e.LinkText); FileService.OpenFile("browser://" + e.LinkText);
}; };
/*textEditorControl.ShowLineNumbers = false;
textEditorControl.ShowInvalidLines = false; // auto-scrolling on RichTextBox only works when HideSelection=false.
textEditorControl.EnableFolding = false; // See comments to http://weblogs.asp.net/jdanforth/archive/2004/01/23/62026.aspx
textEditorControl.IsIconBarVisible = false; textEditorControl.HideSelection = false;
textEditorControl.Document.ReadOnly = true;
textEditorControl.ShowHRuler = false;
textEditorControl.ShowVRuler = false;
textEditorControl.ShowSpaces = false;
textEditorControl.ShowTabs = false;
textEditorControl.ShowEOLMarkers = false;*/
textEditorControl.ReadOnly = true; textEditorControl.ReadOnly = true;
textEditorControl.ContextMenuStrip = MenuService.CreateContextMenu(this, "/SharpDevelop/Pads/CompilerMessageView/ContextMenu"); textEditorControl.ContextMenuStrip = MenuService.CreateContextMenu(this, "/SharpDevelop/Pads/CompilerMessageView/ContextMenu");

Loading…
Cancel
Save