Fixed node size change bug

This commit is contained in:
Gonzalo Bellver
2012-01-18 20:02:15 -03:00
parent 830f65caa9
commit 62b3bf8bc0
2 changed files with 6 additions and 2 deletions

View File

@@ -94,10 +94,13 @@ mindplot.layout.Node = new Class({
},
hasPositionChanged: function() {
return this._isPropertyChanged('position');
},
hasSizeChanged: function() {
return this._isPropertyChanged('size');
},
getPosition: function() {
return this._getProperty('position');
},