diff options
| author | Jens Mönig <jens@moenig.org> | 2015-03-09 07:39:51 +0100 |
|---|---|---|
| committer | Jens Mönig <jens@moenig.org> | 2015-03-09 07:39:51 +0100 |
| commit | 31ea6f603085827ba95f20f55faca3e4fa85365e (patch) | |
| tree | 3266efabf4ff868e0bfec9e79898438991280219 /gui.js | |
| parent | 802ace18d18784a026a7c1c0466da264828b8227 (diff) | |
| download | snap-31ea6f603085827ba95f20f55faca3e4fa85365e.tar.gz snap-31ea6f603085827ba95f20f55faca3e4fa85365e.zip | |
Only enable input caching for blocks
Diffstat (limited to 'gui.js')
| -rw-r--r-- | gui.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -69,7 +69,7 @@ SpeechBubbleMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.gui = '2015-February-28'; +modules.gui = '2015-March-09'; // Declarations @@ -2269,10 +2269,10 @@ IDE_Morph.prototype.settingsMenu = function () { addPreference( 'Cache Inputs', function () { - SyntaxElementMorph.prototype.isCachingInputs = - !SyntaxElementMorph.prototype.isCachingInputs; + BlockMorph.prototype.isCachingInputs = + !BlockMorph.prototype.isCachingInputs; }, - SyntaxElementMorph.prototype.isCachingInputs, + BlockMorph.prototype.isCachingInputs, 'uncheck to stop caching\ninputs (for debugging the evaluator)', 'check to cache inputs\nboosts recursion', true |
