From 7c9ff84f2299e0c295576857f6d9c7cca4b8dec8 Mon Sep 17 00:00:00 2001 From: Chad Engler Date: Tue, 4 Feb 2014 16:26:43 -0800 Subject: [PATCH] call proper parent update --- src/pixi/text/BitmapText.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pixi/text/BitmapText.js b/src/pixi/text/BitmapText.js index 27ef4e3..54136e7 100644 --- a/src/pixi/text/BitmapText.js +++ b/src/pixi/text/BitmapText.js @@ -174,7 +174,7 @@ PIXI.BitmapText.prototype.updateTransform = function() this.dirty = false; } - PIXI.DisplayObjectContainer.prototype.updateTransform.call(this); + PIXI.SpriteBatch.prototype.updateTransform.call(this); }; PIXI.BitmapText.fonts = {};