diff options
| author | Gubolin <gubolin@fantasymail.de> | 2015-03-01 09:42:02 +0100 |
|---|---|---|
| committer | Gubolin <gubolin@fantasymail.de> | 2015-03-01 09:42:02 +0100 |
| commit | 63234d8858b20a5faf7b1dee696e0db332360d2d (patch) | |
| tree | f5a551dba9e23b24a443e73694896c5db17324d8 /gui.js | |
| parent | 438fe4e3619c5dc52ca625a1e16048b30cf16c7d (diff) | |
| parent | b1d78532557371dfc740c078c76c13e8e0f66896 (diff) | |
| download | snap-63234d8858b20a5faf7b1dee696e0db332360d2d.tar.gz snap-63234d8858b20a5faf7b1dee696e0db332360d2d.zip | |
merge
Diffstat (limited to 'gui.js')
| -rw-r--r-- | gui.js | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -69,7 +69,7 @@ SpeechBubbleMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.gui = '2015-February-20'; +modules.gui = '2015-February-28'; // Declarations @@ -2376,6 +2376,17 @@ IDE_Morph.prototype.settingsMenu = function () { 'check to prioritize\nscript execution' ); addPreference( + 'Cache Inputs', + function () { + SyntaxElementMorph.prototype.isCachingInputs = + !SyntaxElementMorph.prototype.isCachingInputs; + }, + SyntaxElementMorph.prototype.isCachingInputs, + 'uncheck to stop caching\ninputs (for debugging the evaluator)', + 'check to cache inputs\nboosts recursion', + true + ); + addPreference( 'Rasterize SVGs', function () { MorphicPreferences.rasterizeSVGs = @@ -2488,8 +2499,8 @@ IDE_Morph.prototype.projectMenu = function () { menu.addItem( 'Save to disk', 'saveProjectToDisk', - 'store this project\nin your downloads folder\n' - + '(not supported by all browsers)' + 'store this project\nin the downloads folder\n' + + '(in supporting browsers)' ); menu.addItem('Save As...', 'saveProjectsBrowser'); menu.addLine(); |
