diff --git a/src/item/Group.js b/src/item/Group.js index aa8c514b..81400705 100644 --- a/src/item/Group.js +++ b/src/item/Group.js @@ -124,24 +124,6 @@ var Group = Item.extend(/** @lends Group# */{ return this._clipItem = null; }, - /** - * Specifies whether the group applies transformations directly to its - * children, or whether they are to be stored in its {@link Item#matrix} - * - * @type Boolean - * @default true - * @bean - */ - getTransformContent: function() { - return this._transformContent; - }, - - setTransformContent: function(transform) { - this._transformContent = transform; - if (transform) - this.applyMatrix(); - }, - /** * Specifies whether the group item is to be clipped. * When setting to {@code true}, the first child in the group is diff --git a/src/item/Item.js b/src/item/Item.js index 7ed58d7b..7659e927 100644 --- a/src/item/Item.js +++ b/src/item/Item.js @@ -989,6 +989,24 @@ var Item = Base.extend(Callback, /** @lends Item# */{ && this._globalMatrix || null; }, + /** + * Specifies whether the group applies transformations directly to its + * children, or whether they are to be stored in its {@link Item#matrix} + * + * @type Boolean + * @default true + * @bean + */ + getTransformContent: function() { + return this._transformContent; + }, + + setTransformContent: function(transform) { + this._transformContent = transform; + if (transform) + this.applyMatrix(); + }, + /** * {@grouptitle Project Hierarchy} * The project that this item belongs to.