Merge pull request #398 from cycomachead/turbo

fix set turbo mode block; fixes #396
pull/3/merge
Jens Mönig 2014-04-30 12:48:53 +02:00
commit b71bc8027d
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) {
ide.startFastTracking();
} else {
ide.stopFastTracking();
}
}
}