reset APL scalars support when creating or loading a new project

pull/95/head
jmoenig 2020-06-24 11:47:20 +02:00
rodzic 65eb84c228
commit 2b5937d1c7
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -4136,6 +4136,7 @@ IDE_Morph.prototype.newProject = function () {
SpriteMorph.prototype.useFlatLineEnds = false;
Process.prototype.enableLiveCoding = false;
Process.prototype.enableHyperOps = true;
Process.prototype.toggleAPLscalars(false);
this.setProjectName('');
this.projectNotes = '';
this.createStage();
@ -4619,6 +4620,7 @@ IDE_Morph.prototype.rawOpenProjectString = function (str) {
StageMorph.prototype.enableSublistIDs = false;
StageMorph.prototype.enablePenLogging = false;
Process.prototype.enableLiveCoding = false;
Process.prototype.toggleAPLscalars(false);
if (Process.prototype.isCatchingErrors) {
try {
this.serializer.openProject(
@ -4659,6 +4661,7 @@ IDE_Morph.prototype.rawOpenCloudDataString = function (str) {
StageMorph.prototype.enableSublistIDs = false;
StageMorph.prototype.enablePenLogging = false;
Process.prototype.enableLiveCoding = false;
Process.prototype.toggleAPLscalars(false);
if (Process.prototype.isCatchingErrors) {
try {
model = this.serializer.parse(str);