Set tint on setters

This commit is contained in:
Richard Davey 2018-07-02 13:32:27 +01:00
parent 390ae5f683
commit 0ac0bc18d3

View file

@ -217,6 +217,7 @@ var Tint = {
set: function (value) set: function (value)
{ {
this._tintTL = GetColor(value); this._tintTL = GetColor(value);
this._isTinted = true;
} }
}, },
@ -240,6 +241,7 @@ var Tint = {
set: function (value) set: function (value)
{ {
this._tintTR = GetColor(value); this._tintTR = GetColor(value);
this._isTinted = true;
} }
}, },
@ -263,6 +265,7 @@ var Tint = {
set: function (value) set: function (value)
{ {
this._tintBL = GetColor(value); this._tintBL = GetColor(value);
this._isTinted = true;
} }
}, },
@ -286,6 +289,7 @@ var Tint = {
set: function (value) set: function (value)
{ {
this._tintBR = GetColor(value); this._tintBR = GetColor(value);
this._isTinted = true;
} }
}, },