moved TELL and ASK templates in the palette up underneath RUN CALL

upd4.1
Jens Mönig 2017-10-17 09:48:41 +02:00
rodzic da9c293321
commit f2bbff3d54
2 zmienionych plików z 5 dodań i 19 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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));