diff options
Diffstat (limited to 'threads.js')
| -rw-r--r-- | threads.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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(); } } } |
