mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
Use getter instead of beans property.
This commit is contained in:
parent
5e4369d800
commit
6083faaf80
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ var Group = this.Group = Item.extend({
|
|||
|
||||
setClipped: function(clipped) {
|
||||
this._clipped = clipped;
|
||||
var child = this.firstChild;
|
||||
var child = this.getFirstChild();
|
||||
if (child)
|
||||
child.setClipMask(clipped);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue