Fix issue where preset browser would show after continuing a line (close #5770)

This commit is contained in:
Quincy Morgan
2019-01-28 08:52:20 -05:00
parent 3a48b3b57c
commit 1066f8f788
3 changed files with 6 additions and 5 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(), candidate.affix(vertex.id))
modeDrawLine(context, candidate.id, context.graph(), candidate.affix(vertex.id), true)
);
};