Fix group coords

This commit is contained in:
Tom French 2014-07-04 09:37:32 +01:00
parent 6eae0994db
commit 03926af729
2 changed files with 5 additions and 3 deletions

View file

@ -995,9 +995,9 @@
this._activeGroup = group;
if (group) {
group.canvas = this;
group._calcBounds();
group._updateObjectsCoords();
group.setCoords();
//group._calcBounds();
//group._updateObjectsCoords();
//group.setCoords();
group.set('active', true);
}
},

View file

@ -63,7 +63,9 @@
extend(this, options);
}
this._setOpacityIfSame();
this._calcBounds();
this._updateObjectsCoords();
this.setCoords();
this.saveCoords();
},