Fix line continuing

This commit is contained in:
Quincy Morgan
2020-03-16 13:43:24 -07:00
parent 47aaec0db6
commit 1041f89716
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ export function operationContinue(selectedIDs, context) {
var operation = function() {
var candidate = candidateWays()[0];
context.enter(
modeDrawLine(context, candidate.id, context.graph(), context.graph(), 'line', candidate.affix(vertex.id), true)
modeDrawLine(context, candidate.id, context.graph(), 'line', candidate.affix(vertex.id), true)
);
};
+1 -1
View File
@@ -199,7 +199,7 @@ export function validationDisconnectedWay() {
}
context.enter(
modeDrawLine(context, wayId, context.graph(), context.graph(), 'line', way.affix(vertexId), true)
modeDrawLine(context, wayId, context.graph(), 'line', way.affix(vertexId), true)
);
}
});
+1 -1
View File
@@ -225,7 +225,7 @@ export function validationImpossibleOneway() {
}
context.enter(
modeDrawLine(context, way.id, context.graph(), context.graph(), 'line', way.affix(vertex.id), true)
modeDrawLine(context, way.id, context.graph(), 'line', way.affix(vertex.id), true)
);
}