mirror of
https://github.com/scratchfoundation/scratch-flash.git
synced 2024-12-04 21:21:06 -05:00
Merge pull request #223 from nathan/bubble-zoom
Fixed bubbles not appearing at right edge of block when zoomed
This commit is contained in:
commit
f64a6bb829
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue