Browse Source

Fixed problem introduces in last revision.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@970 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 20 years ago
parent
commit
77b1f00f71
  1. 2
      src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextView.cs

2
src/Libraries/ICSharpCode.TextEditor/Project/Src/Gui/TextView.cs

@ -288,7 +288,7 @@ namespace ICSharpCode.TextEditor @@ -288,7 +288,7 @@ namespace ICSharpCode.TextEditor
HighlightColor caretLine = textArea.Document.HighlightingStrategy.GetColorFor("CaretMarker");
return BrushRegistry.GetBrush(caretLine.Color);
}
HighlightBackground background = (HighlightBackground)textArea.Document.HighlightingStrategy.GetColorFor("DefaultBackground");
HighlightBackground background = (HighlightBackground)textArea.Document.HighlightingStrategy.GetColorFor("Default");
Color bgColor = background.BackgroundColor;
if (textArea.MotherTextAreaControl.TextEditorProperties.UseCustomLine == true)
{

Loading…
Cancel
Save