Merge pull request #1046 from cycomachead/autofill

Fix isAutoFill to allow false values
dev
Jens Mönig 2015-12-15 10:35:53 +01:00
commit 632bdec030
1 zmienionych plików z 1 dodań i 1 usunięć

2
gui.js
Wyświetl plik

@ -233,7 +233,7 @@ IDE_Morph.prototype.init = function (isAutoFill) {
this.corralBar = null; this.corralBar = null;
this.corral = null; this.corral = null;
this.isAutoFill = isAutoFill || true; this.isAutoFill = isAutoFill === undefined ? true : isAutoFill;
this.isAppMode = false; this.isAppMode = false;
this.isSmallStage = false; this.isSmallStage = false;
this.filePicker = null; this.filePicker = null;