From d177ab7fcfa11a4629d67f830593447051313fc2 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 30 Nov 2018 01:56:04 -0500 Subject: [PATCH] Shrink the directional way markers slightly (closes #5533) --- modules/svg/defs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/svg/defs.js b/modules/svg/defs.js index 1d9ef8b5d2..726ea7b29e 100644 --- a/modules/svg/defs.js +++ b/modules/svg/defs.js @@ -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); }