Merge pull request #729 from sapics/item-matrix

setMatrix of item makes more useful
This commit is contained in:
Jürg Lehni 2015-08-21 15:11:49 +02:00
commit 4cdc572824

View file

@ -1128,9 +1128,9 @@ var Item = Base.extend(Emitter, /** @lends Item# */{
return this._matrix; return this._matrix;
}, },
setMatrix: function(matrix) { setMatrix: function() {
// Use Matrix#initialize to easily copy over values. // Use Matrix#initialize to easily copy over values.
this._matrix.initialize(matrix); this._matrix.initialize.apply(this._matrix, arguments);
if (this._applyMatrix) { if (this._applyMatrix) {
// Directly apply the internal matrix. This will also call // Directly apply the internal matrix. This will also call
// _changed() for us. // _changed() for us.