Skip to content

Commit

Permalink
Improve abstraction padding
Browse files Browse the repository at this point in the history
  • Loading branch information
danaugrs committed Sep 24, 2023
1 parent 3a9a8a1 commit 9fac8f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ export function draw(
.attr("stroke-dasharray", "4,6")
.attr("fill", "none");
return {
widthLeft: widthLeft + 1,
widthRight: widthRight + 1,
widthLeft: widthLeft + 0.5,
widthRight: widthRight + 0.5,
height: height + 2,
vars: freeVars,
nodeGroup,
Expand Down

0 comments on commit 9fac8f8

Please sign in to comment.