mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-18 18:41:08 +00:00
fix lint
This commit is contained in:
parent
0ddf90c255
commit
c6787042a9
1 changed files with 2 additions and 1 deletions
|
|
@ -1210,7 +1210,8 @@
|
|||
multY *= fabric.devicePixelRatio;
|
||||
}
|
||||
ctx.shadowColor = this.shadow.color;
|
||||
ctx.shadowBlur = this.shadow.blur * fabric.browserShadowBlurConstant * (multX + multY) * (scaling.scaleX + scaling.scaleY) / 4;
|
||||
ctx.shadowBlur = this.shadow.blur * fabric.browserShadowBlurConstant *
|
||||
(multX + multY) * (scaling.scaleX + scaling.scaleY) / 4;
|
||||
ctx.shadowOffsetX = this.shadow.offsetX * multX * scaling.scaleX;
|
||||
ctx.shadowOffsetY = this.shadow.offsetY * multY * scaling.scaleY;
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue