Skip to content

Commit

Permalink
#1110 Handling case with concurrency lines
Browse files Browse the repository at this point in the history
  • Loading branch information
knsv committed Dec 3, 2019
1 parent fcd1e10 commit 5a38562
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/diagrams/state/stateRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,8 @@ const renderDoc = (doc, diagram, parentId) => {
pShift = 0;
}
}
divider.setAttribute('x1', 0 - pShift);
divider.setAttribute('x2', pWidth - pShift);
divider.setAttribute('x1', 0 - pShift + 8);
divider.setAttribute('x2', pWidth - pShift - 8);
});
} else {
logger.debug('No Node ' + v + ': ' + JSON.stringify(graph.node(v)));
Expand Down

0 comments on commit 5a38562

Please sign in to comment.