Skip to content

Commit

Permalink
missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekucera committed May 24, 2024
1 parent 42516fb commit f6f28ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extensions/renderer/canvas/drawing-edges.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ CRp.drawEdge = function( context, edge, shiftToOriginWithBb, drawLabel = true, s
context.lineCap = lineCap;

if (lineOutlineWidth > 0) {
r.colorStrokeStyle( context, lineOutlineColor[0], lineOutlineColor[1], lineOutlineColor[2], strokeOpacity )
r.colorStrokeStyle( context, lineOutlineColor[0], lineOutlineColor[1], lineOutlineColor[2], strokeOpacity );
} else {
// do not draw any lineOutline
context.lineCap = 'butt'; // reset for other drawing functions
return
return;
}

if (curveStyle === 'straight-triangle') {
Expand Down

0 comments on commit f6f28ee

Please sign in to comment.