Skip to content

Commit

Permalink
fix: account for heading bottom margin
Browse files Browse the repository at this point in the history
  • Loading branch information
abrgr committed Sep 19, 2023
1 parent 1d151a4 commit 1dc361b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/svg-flow-graph/transition-node/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export const SvgTransitionNode = ({
items={items}
x1={pos.x + padding}
x2={pos.x + pos.width - padding}
y1={pos.y + padding + headingHeight}
y1={pos.y + padding + headingHeight + headingBottomMargin}
y2={pos.y + pos.height - padding}
/>
</>
Expand Down

0 comments on commit 1dc361b

Please sign in to comment.