diff options
| author | Nathan Dinsmore <nathan@users.noreply.github.com> | 2015-06-17 20:05:35 -0400 |
|---|---|---|
| committer | Nathan Dinsmore <nathan@users.noreply.github.com> | 2015-06-17 20:05:35 -0400 |
| commit | f54da26e8e4a9d92c93ac58f242ac521b6dbac66 (patch) | |
| tree | 78523e10541ef3718a879e45f963ce437752589e | |
| parent | 3e613a44090391854c6126d919797911daab2307 (diff) | |
| download | snap-f54da26e8e4a9d92c93ac58f242ac521b6dbac66.tar.gz snap-f54da26e8e4a9d92c93ac58f242ac521b6dbac66.zip | |
Don't step SyntaxElementMorphs or their children
~1500 ms before => ~150 ms after (stepping world with large scripts)
| -rw-r--r-- | blocks.js | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -621,6 +621,10 @@ SyntaxElementMorph.prototype.topBlock = function () { return this; }; +// SyntaxElementMorph stepping: + +SyntaxElementMorph.prototype.step = null; + // SyntaxElementMorph drag & drop: SyntaxElementMorph.prototype.reactToGrabOf = function (grabbedMorph) { |
