Merge pull request #223 from nathan/bubble-zoom

Fixed bubbles not appearing at right edge of block when zoomed
This commit is contained in:
Shane M. Clements 2014-06-03 10:01:06 -06:00
commit f64a6bb829

View file

@ -120,7 +120,7 @@ public class Interpreter {
var oldThread:Thread = activeThread;
activeThread = new Thread(b, targetObj);
var p:Point = b.localToGlobal(new Point(0, 0));
app.showBubble(String(evalCmd(b)), p.x, p.y, b.width);
app.showBubble(String(evalCmd(b)), p.x, p.y, b.getRect(app.stage).width);
activeThread = oldThread;
return;
}