Hello
I've created a custom SpanIndicator class, and I have over-ridden ApplyHighlightingStyleAdornments.However - when scrolling horizontally, the dotted line gets painted over, having the effect of turning it into a solid underline. This doesn't happen if I use HighlightingStyleLineStyle.Wave.
Am I missing something obvious?
Thanks!
I've created a custom SpanIndicator class, and I have over-ridden ApplyHighlightingStyleAdornments.
protected override void ApplyHighlightingStyleAdornments(HighlightingStyleResolver resolver)
{
resolver.ApplyUnderline(_foreColor, HighlightingStyleLineStyle.Dot, HighlightingStyleLineWeight.Single);
}
Am I missing something obvious?
Thanks!