diff --git a/src/core/text/Text.js b/src/core/text/Text.js index d48d0ae..a726742 100644 --- a/src/core/text/Text.js +++ b/src/core/text/Text.js @@ -226,7 +226,10 @@ return this._text; }, set: function (text){ - text = text.toString() || ' '; + + text = text || ' '; + text = text.toString(); + if (this._text === text) { return;