diff options
| author | Michael Ball <cycomachead@gmail.com> | 2014-04-22 17:05:14 -0700 |
|---|---|---|
| committer | Michael Ball <cycomachead@gmail.com> | 2014-04-22 17:05:14 -0700 |
| commit | 9dad5314df266acb7418c96caa6fa77cb9bdcdbe (patch) | |
| tree | 4e3783832ffe483e82574152ada629322a3d98a5 | |
| parent | ce3340e623fd0f03ecb15de5ec54eda8113c7c67 (diff) | |
| download | snap-byow-9dad5314df266acb7418c96caa6fa77cb9bdcdbe.tar.gz snap-byow-9dad5314df266acb7418c96caa6fa77cb9bdcdbe.zip | |
fix set turbo mode block
| -rw-r--r-- | threads.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1482,10 +1482,10 @@ Process.prototype.doSetFastTracking = function (bool) { if (this.homeContext.receiver) { ide = this.homeContext.receiver.parentThatIsA(IDE_Morph); if (ide) { - if (ide.stage.isFastTracked) { - ide.stopFastTracking(); - } else { + if (bool === true) { ide.startFastTracking(); + } else { + ide.stopFastTracking(); } } } |
