Closed michmela44 closed 9 years ago
The getter in CurrentLineHighlightRenderer.cs, line 26 returns itself, which will cause a StackOverflowException
public int Line { get { return this.Line; } set { if (this.line != value) { this.line = value; this.textView.InvalidateLayer(this.Layer); } } }
The getter in CurrentLineHighlightRenderer.cs, line 26 returns itself, which will cause a StackOverflowException