diff --git a/cocos2d/core/labelttf/CCLabelTTF.js b/cocos2d/core/labelttf/CCLabelTTF.js index 42803f2a2a..512257cc04 100644 --- a/cocos2d/core/labelttf/CCLabelTTF.js +++ b/cocos2d/core/labelttf/CCLabelTTF.js @@ -805,18 +805,18 @@ cc.LabelTTF = cc.Sprite.extend(/** @lends cc.LabelTTF# */{ */ getContentSize: function () { if (this._needUpdateTexture) - this._renderCmd._updateTTF(); + this._renderCmd._updateTexture(); return cc.size(this._contentSize); }, _getWidth: function () { if (this._needUpdateTexture) - this._renderCmd._updateTTF(); + this._renderCmd._updateTexture(); return this._contentSize.width; }, _getHeight: function () { if (this._needUpdateTexture) - this._renderCmd._updateTTF(); + this._renderCmd._updateTexture(); return this._contentSize.height; },