From b8c48040a26befd6a4670dbc89f5e91ef51210ea Mon Sep 17 00:00:00 2001 From: jmoenig Date: Thu, 27 Jun 2013 08:18:51 +0200 Subject: fixed speech bubble scaling when sprite is not onstage (reported in the Scratch forums) --- objects.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'objects.js') diff --git a/objects.js b/objects.js index 9f7e5b9..98602e4 100644 --- a/objects.js +++ b/objects.js @@ -123,7 +123,7 @@ PrototypeHatBlockMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.objects = '2013-June-24'; +modules.objects = '2013-June-27'; var SpriteMorph; var StageMorph; @@ -2507,6 +2507,7 @@ SpriteMorph.prototype.talkBubble = function () { SpriteMorph.prototype.positionTalkBubble = function () { var stage = this.parentThatIsA(StageMorph), + stageScale = stage ? stage.scale : 1, bubble = this.talkBubble(), middle = this.center().y; if (!bubble) {return null; } @@ -2519,7 +2520,7 @@ SpriteMorph.prototype.positionTalkBubble = function () { bubble.setLeft(this.right()); bubble.setBottom(this.top()); while (!this.isTouching(bubble) && bubble.bottom() < middle) { - bubble.silentMoveBy(new Point(-1, 1).scaleBy(stage.scale)); + bubble.silentMoveBy(new Point(-1, 1).scaleBy(stageScale)); } if (!stage) {return null; } if (bubble.right() > stage.right()) { -- cgit v1.3.1