Closed DrDaleks closed 1 year ago
Using existing code to compute line-to-Y position rather than manually. Simpler code that also properly aligns caret and marker painting for a same location.
This actually requires ErrorStrip.Marker.updateLocation() to call lineToY(line - 1) since Markers' lines are 1-based and the caret is 0-based.
ErrorStrip.Marker.updateLocation()
lineToY(line - 1)
Thanks for this! I'll make the tweak I mentioned above
Using existing code to compute line-to-Y position rather than manually. Simpler code that also properly aligns caret and marker painting for a same location.