summaryrefslogtreecommitdiff
path: root/threads.js
diff options
context:
space:
mode:
authorMichael Ball <cycomachead@gmail.com>2014-05-03 19:15:52 -0700
committerMichael Ball <cycomachead@gmail.com>2014-05-03 19:15:52 -0700
commit01b9417b87688b591fe3df2a55ec367dd72f027d (patch)
tree9bb4d236387b631e4f1ca3fe57152f148d4c9fa4 /threads.js
parent8badce6480d434653326684a953fccc6cf03c5d8 (diff)
parentf9989ad7cfa5e27b4784d8cd464fdc7cbe289942 (diff)
downloadsnap-01b9417b87688b591fe3df2a55ec367dd72f027d.tar.gz
snap-01b9417b87688b591fe3df2a55ec367dd72f027d.zip
Merge pull request #31 from jmoenig/master
Update CS10 Fork
Diffstat (limited to 'threads.js')
-rw-r--r--threads.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/threads.js b/threads.js
index 77632d0..b82a8c5 100644
--- a/threads.js
+++ b/threads.js
@@ -83,7 +83,7 @@ ArgLabelMorph, localize, XML_Element, hex_sha512*/
// Global stuff ////////////////////////////////////////////////////////
-modules.threads = '2014-Feb-10';
+modules.threads = '2014-May-02';
var ThreadManager;
var Process;
@@ -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();
}
}
}