Skip to content

Commit

Permalink
Use correct default value for startArrow property
Browse files Browse the repository at this point in the history
Should be disabled by default.
  • Loading branch information
caleb531 committed Jun 9, 2024
1 parent f7ca865 commit c71921e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jcanvas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class jCanvasDefaults implements JCanvasDefaults {
source: string | HTMLImageElement | HTMLCanvasElement = "";
spread: number = 0;
start: number = 0;
startArrow: boolean = true;
startArrow: boolean = false;
strokeCap: CanvasRenderingContext2D["lineCap"] = "butt";
strokeDash: number[] | null = null;
strokeDashOffset: CanvasRenderingContext2D["lineDashOffset"] = 0;
Expand Down

0 comments on commit c71921e

Please sign in to comment.