Shrink the directional way markers slightly

(closes #5533)
This commit is contained in:
Bryan Housel
2018-11-30 01:56:04 -05:00
parent 8b0e729b9c
commit d177ab7fcf
+1 -1
View File
@@ -49,7 +49,7 @@ export function svgDefs(context) {
.attr('orient', 'auto')
.append('path')
.attr('class', 'sided-marker-path sided-marker-' + name + '-path')
.attr('d', 'M 0,0 L 1,2 L 2,0 z')
.attr('d', 'M 0,0 L 1,1 L 2,0 z')
.attr('stroke', 'none')
.attr('fill', color);
}