From e9edfe0cd5a2085030d1797a65b99ba61de872cf Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 23 Jan 2017 21:10:50 -0500 Subject: [PATCH] Always render vertices at endpoints (see #3775) --- modules/svg/vertices.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/svg/vertices.js b/modules/svg/vertices.js index 8ce017f47..04c007271 100644 --- a/modules/svg/vertices.js +++ b/modules/svg/vertices.js @@ -158,6 +158,7 @@ export function svgVertices(projection, context) { if (entity.id in selected || entity.hasInterestingTags() || + entity.isEndpoint(graph) || entity.isIntersection(graph)) { vertices.push(entity); }