diff --git a/history.txt b/history.txt index f59f0279..63a69c43 100755 --- a/history.txt +++ b/history.txt @@ -3707,7 +3707,7 @@ Fixes: ------ * Blocks: keep “undo” and “redo” buttons at the same location * Objects, Threads: added "with inpus" to TELL and ASK prims, changed TELL's C-shape to command-style input - +* Objects: moved TELL and ASK templates in the palette up underneath RUN CALL v4.1 Features: * polymorphic sprite-local custom blocks diff --git a/objects.js b/objects.js index 188df8ce..73ce5c91 100644 --- a/objects.js +++ b/objects.js @@ -2024,13 +2024,9 @@ SpriteMorph.prototype.blockTemplates = function (category) { blocks.push(block('fork')); blocks.push(block('evaluate')); blocks.push('-'); - /* - // list variants commented out for now (redundant) - blocks.push(block('doRunWithInputList')); - blocks.push(block('forkWithInputList')); - blocks.push(block('evaluateWithInputList')); + blocks.push(block('doTellTo')); + blocks.push(block('reportAskFor')); blocks.push('-'); - */ blocks.push(block('doCallCC')); blocks.push(block('reportCallCC')); blocks.push('-'); @@ -2040,9 +2036,6 @@ SpriteMorph.prototype.blockTemplates = function (category) { blocks.push(block('removeClone')); blocks.push('-'); blocks.push(block('doPauseAll')); - blocks.push('-'); - blocks.push(block('doTellTo')); - blocks.push(block('reportAskFor')); blocks.push('='); blocks.push(this.makeBlockButton(cat)); @@ -7078,13 +7071,9 @@ StageMorph.prototype.blockTemplates = function (category) { blocks.push(block('fork')); blocks.push(block('evaluate')); blocks.push('-'); - /* - // list variants commented out for now (redundant) - blocks.push(block('doRunWithInputList')); - blocks.push(block('forkWithInputList')); - blocks.push(block('evaluateWithInputList')); + blocks.push(block('doTellTo')); + blocks.push(block('reportAskFor')); blocks.push('-'); - */ blocks.push(block('doCallCC')); blocks.push(block('reportCallCC')); blocks.push('-'); @@ -7092,9 +7081,6 @@ StageMorph.prototype.blockTemplates = function (category) { blocks.push(block('newClone')); blocks.push('-'); blocks.push(block('doPauseAll')); - blocks.push('-'); - blocks.push(block('doTellTo')); - blocks.push(block('reportAskFor')); blocks.push('='); blocks.push(this.makeBlockButton(cat));