Use getter instead of beans property.

This commit is contained in:
Jürg Lehni 2011-05-07 09:56:27 +01:00
parent 5e4369d800
commit 6083faaf80

View file

@ -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);
},