mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-16 09:43:11 +00:00
Update group.class.js
This commit is contained in:
parent
afcf7c1285
commit
02dca44656
1 changed files with 4 additions and 1 deletions
|
|
@ -234,8 +234,11 @@
|
|||
}
|
||||
|
||||
ctx.save();
|
||||
this.clipTo && fabric.util.clipContext(this, ctx);
|
||||
if (this.transformMatrix) {
|
||||
ctx.transform.apply(ctx, this.transformMatrix);
|
||||
}
|
||||
this.transform(ctx);
|
||||
this.clipTo && fabric.util.clipContext(this, ctx);
|
||||
// the array is now sorted in order of highest first, so start from end
|
||||
for (var i = 0, len = this._objects.length; i < len; i++) {
|
||||
this._renderObject(this._objects[i], ctx);
|
||||
|
|
|
|||
Loading…
Reference in a new issue