summaryrefslogtreecommitdiff
path: root/threads.js
diff options
context:
space:
mode:
Diffstat (limited to 'threads.js')
-rw-r--r--threads.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/threads.js b/threads.js
index 77632d0..ca6bcd2 100644
--- a/threads.js
+++ b/threads.js
@@ -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) {
ide.startFastTracking();
+ } else {
+ ide.stopFastTracking();
}
}
}