diff options
| author | Gubolin <gubolin@fantasymail.de> | 2014-08-06 12:24:45 +0200 |
|---|---|---|
| committer | Gubolin <gubolin@fantasymail.de> | 2014-08-06 12:24:45 +0200 |
| commit | fc36ac7fea89447682868dc40cc9a818afc51c5c (patch) | |
| tree | 10e6a7db41d29764435956a696ee3ac50597c78e | |
| parent | e2191d8f6ea72077ec5595dc6570a9804b8cbd89 (diff) | |
| download | snap-fc36ac7fea89447682868dc40cc9a818afc51c5c.tar.gz snap-fc36ac7fea89447682868dc40cc9a818afc51c5c.zip | |
fix another strange Note bug
| -rw-r--r-- | objects.js | 2 | ||||
| -rw-r--r-- | threads.js | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -4811,7 +4811,7 @@ StageMorph.prototype.fireGreenFlagEvent = function () { StageMorph.prototype.fireStopAllEvent = function () { var ide = this.parentThatIsA(IDE_Morph); - this.threads.resumeAll(this.stage); + //this.threads.resumeAll(this.stage); // leads to a strange Note bug this.keysPressed = {}; this.threads.stopAll(); this.stopAllActiveSounds(); @@ -1395,7 +1395,7 @@ Process.prototype.doStopAll = function () { if (this.homeContext.receiver) { stage = this.homeContext.receiver.parentThatIsA(StageMorph); if (stage) { - stage.threads.resumeAll(stage); + //stage.threads.resumeAll(stage); // leads to a strange Note bug stage.keysPressed = {}; stage.threads.stopAll(); stage.stopAllActiveSounds(); |
