summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Ball <cycomachead@gmail.com>2014-04-27 12:46:57 -0700
committerMichael Ball <cycomachead@gmail.com>2014-04-27 12:46:57 -0700
commit826eb102c88ca4722a44fe1cc150ba16a30ef9a6 (patch)
tree7b85d43d4f29b669786b6bc602cd8045f44de09a
parent9dad5314df266acb7418c96caa6fa77cb9bdcdbe (diff)
downloadsnap-byow-826eb102c88ca4722a44fe1cc150ba16a30ef9a6.tar.gz
snap-byow-826eb102c88ca4722a44fe1cc150ba16a30ef9a6.zip
style fix for bool
-rw-r--r--threads.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/threads.js b/threads.js
index ef83b46..ca6bcd2 100644
--- a/threads.js
+++ b/threads.js
@@ -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();