Showing
1 changed file
with
3 additions
and
0 deletions
... | @@ -22,6 +22,9 @@ class Brush extends ComponentInterface { | ... | @@ -22,6 +22,9 @@ class Brush extends ComponentInterface { |
22 | return new fabric.Path(paths, { | 22 | return new fabric.Path(paths, { |
23 | stroke: this.color.getRgba(), | 23 | stroke: this.color.getRgba(), |
24 | strokeWidth: this.size, | 24 | strokeWidth: this.size, |
25 | + fill: null, | ||
26 | + strokeLineCap: "round", | ||
27 | + strokeLineJoin: "round", | ||
25 | }); | 28 | }); |
26 | } | 29 | } |
27 | 30 | ... | ... |
-
Please register or login to post a comment