fix set turbo mode block

pull/3/merge
Michael Ball 2014-04-22 17:05:14 -07:00
rodzic ce3340e623
commit 9dad5314df
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -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 === true) {
ide.startFastTracking();
} else {
ide.stopFastTracking();
}
}
}