Fixed property name

This commit is contained in:
Richard Davey 2018-09-07 17:19:40 +01:00
parent 1f4c0b5809
commit ecbee17c53

View file

@ -61,12 +61,12 @@ var Ellipse = new Class({
get: function ()
{
return this.__smoothness;
return this._smoothness;
},
set: function (value)
{
this.__smoothness = value;
this._smoothness = value;
this.updateData();
}