diff options
| author | Michael Ball <cycomachead@gmail.com> | 2014-04-27 12:46:57 -0700 |
|---|---|---|
| committer | Michael Ball <cycomachead@gmail.com> | 2014-04-27 12:46:57 -0700 |
| commit | 826eb102c88ca4722a44fe1cc150ba16a30ef9a6 (patch) | |
| tree | 7b85d43d4f29b669786b6bc602cd8045f44de09a /threads.js | |
| parent | 9dad5314df266acb7418c96caa6fa77cb9bdcdbe (diff) | |
| download | snap-byow-826eb102c88ca4722a44fe1cc150ba16a30ef9a6.tar.gz snap-byow-826eb102c88ca4722a44fe1cc150ba16a30ef9a6.zip | |
style fix for bool
Diffstat (limited to 'threads.js')
| -rw-r--r-- | threads.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1482,7 +1482,7 @@ Process.prototype.doSetFastTracking = function (bool) { if (this.homeContext.receiver) { ide = this.homeContext.receiver.parentThatIsA(IDE_Morph); if (ide) { - if (bool === true) { + if (bool) { ide.startFastTracking(); } else { ide.stopFastTracking(); |
