diff options
| author | jmoenig <jens@moenig.org> | 2013-07-11 14:54:44 +0200 |
|---|---|---|
| committer | jmoenig <jens@moenig.org> | 2013-07-11 14:54:44 +0200 |
| commit | eb8aef28c82d86f43ac16d80d5c3a1b6a39561ac (patch) | |
| tree | 2c53a398207bf2f7f19a7aeea03aacc0b9e3fd25 /blocks.js | |
| parent | 2589ec517206d4325b58e2678016f19945b2fbb9 (diff) | |
| download | snap-eb8aef28c82d86f43ac16d80d5c3a1b6a39561ac.tar.gz snap-eb8aef28c82d86f43ac16d80d5c3a1b6a39561ac.zip | |
fixed occasional flickering in scripting areas
(caused by deleted feedback morphs, a bug that surfaced in Chrome 28 on
OSX and may be due to a possible Chrome GC issue)
Diffstat (limited to 'blocks.js')
| -rw-r--r-- | blocks.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -155,7 +155,7 @@ DialogBoxMorph, BlockInputFragmentMorph, PrototypeHatBlockMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.blocks = '2013-July-09'; +modules.blocks = '2013-July-11'; var SyntaxElementMorph; var BlockMorph; @@ -4418,6 +4418,7 @@ ScriptsMorph.prototype.step = function () { if (this.feedbackMorph.parent) { this.feedbackMorph.destroy(); + this.feedbackMorph.parent = null; } if (hand.children.length === 0) { return null; |
