strokeWidth = 0 bug fix

This commit is contained in:
Anton Lavrenov
2019-02-25 07:55:36 -05:00
parent 35961a3a6d
commit 899d0942ea
5 changed files with 43 additions and 3 deletions

View File

@@ -289,6 +289,7 @@ export class Shape extends Node {
hasStroke() {
return (
this.strokeEnabled() &&
this.strokeWidth() &&
!!(this.stroke() || this.strokeLinearGradientColorStops())
// this.getStrokeRadialGradientColorStops()
);